(customDomain) Add configuration modal for domain verification

Closes #742
This commit is contained in:
Baptiste Arnaud
2023-09-18 17:16:30 +02:00
parent 21ad061f7b
commit 322c48cddc
11 changed files with 447 additions and 8 deletions

View File

@@ -635,3 +635,11 @@ export const ChevronLastIcon = (props: IconProps) => (
<path d="M17 6v12" />
</Icon>
)
export const XCircleIcon = (props: IconProps) => (
<Icon viewBox="0 0 24 24" {...featherIconsBaseProps} {...props}>
<circle cx="12" cy="12" r="10" />
<path d="m15 9-6 6" />
<path d="m9 9 6 6" />
</Icon>
)