From a72a198dfa8495b016e7395815ca50d0c1c26cd0 Mon Sep 17 00:00:00 2001 From: Loup Theron Date: Mon, 5 Aug 2024 10:22:08 +0200 Subject: [PATCH] feat(icons): add invalid icon --- src/assets/icons/Invalid.svg | 13 +++++++++++++ src/icons/Invalid.tsx | 27 +++++++++++++++++++++++++++ src/icons/index.tsx | 2 ++ 3 files changed, 42 insertions(+) create mode 100644 src/assets/icons/Invalid.svg create mode 100644 src/icons/Invalid.tsx diff --git a/src/assets/icons/Invalid.svg b/src/assets/icons/Invalid.svg new file mode 100644 index 000000000..cbf7f6d7d --- /dev/null +++ b/src/assets/icons/Invalid.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/icons/Invalid.tsx b/src/icons/Invalid.tsx new file mode 100644 index 000000000..9b5c177c7 --- /dev/null +++ b/src/icons/Invalid.tsx @@ -0,0 +1,27 @@ +import { IconBox } from '../elements/IconBox' + +import type { IconProps } from '../types/definitions' + +export function Invalid({ color, size, title, ...nativeProps }: IconProps) { + return ( + + + + + + + + + + + + + + + + ) +} diff --git a/src/icons/index.tsx b/src/icons/index.tsx index 454d48d79..1dc719819 100644 --- a/src/icons/index.tsx +++ b/src/icons/index.tsx @@ -40,6 +40,7 @@ import { FocusZones } from './FocusZones' import { Hide } from './Hide' import { Info } from './Info' import { Infringement } from './Infringement' +import { Invalid } from './Invalid' import { Landmark } from './Landmark' import { Link } from './Link' import { List } from './List' @@ -133,6 +134,7 @@ export { Hide, Info, Infringement, + Invalid, Landmark, Link, List,