diff options
Diffstat (limited to 'apps/kit/src/lib/components/icons')
| -rw-r--r-- | apps/kit/src/lib/components/icons/exclamation-circle.svelte | 13 | ||||
| -rw-r--r-- | apps/kit/src/lib/components/icons/index.ts | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/apps/kit/src/lib/components/icons/exclamation-circle.svelte b/apps/kit/src/lib/components/icons/exclamation-circle.svelte new file mode 100644 index 0000000..2ce79b1 --- /dev/null +++ b/apps/kit/src/lib/components/icons/exclamation-circle.svelte @@ -0,0 +1,13 @@ +<svg + class="h-5 w-5 {$$restProps.class ?? ''}" + xmlns="http://www.w3.org/2000/svg" + viewBox="0 0 20 20" + fill="currentColor" + aria-hidden="true" +> + <path + fill-rule="evenodd" + d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z" + clip-rule="evenodd" + /> +</svg> diff --git a/apps/kit/src/lib/components/icons/index.ts b/apps/kit/src/lib/components/icons/index.ts index b220f37..e846dc4 100644 --- a/apps/kit/src/lib/components/icons/index.ts +++ b/apps/kit/src/lib/components/icons/index.ts @@ -9,6 +9,8 @@ import XCircle from "./x-circle.svelte"; import CheckCircle from "./check-circle.svelte"; import XMark from "./x-mark.svelte"; import Spinner from "./spinner.svelte"; +import ExclamationCircle from "./exclamation-circle.svelte"; + export { XIcon, MenuIcon, @@ -17,6 +19,7 @@ export { AdjustmentsIcon, InformationCircle, ExclamationTriangle, + ExclamationCircle, XCircle, CheckCircle, XMark, |
