diff --git a/src/core/client/ui/components/Icon/Icon.css b/src/core/client/ui/components/Icon/Icon.css index d64ff3fe1..37fb390d5 100644 --- a/src/core/client/ui/components/Icon/Icon.css +++ b/src/core/client/ui/components/Icon/Icon.css @@ -36,10 +36,6 @@ -moz-osx-font-smoothing: grayscale; } -.xs { - font-size: 14px; - width: 14px; -} .sm { font-size: 18px; width: 18px; diff --git a/src/core/client/ui/components/Icon/Icon.mdx b/src/core/client/ui/components/Icon/Icon.mdx index 4c9197a48..83428c28b 100644 --- a/src/core/client/ui/components/Icon/Icon.mdx +++ b/src/core/client/ui/components/Icon/Icon.mdx @@ -14,7 +14,6 @@ Checkout available icons https://material.io/tools/icons/ ## Basic usage - face face face face diff --git a/src/core/client/ui/components/Icon/Icon.tsx b/src/core/client/ui/components/Icon/Icon.tsx index c37429c28..3b8889fa1 100644 --- a/src/core/client/ui/components/Icon/Icon.tsx +++ b/src/core/client/ui/components/Icon/Icon.tsx @@ -13,7 +13,7 @@ interface InnerProps extends HTMLAttributes { */ classes: typeof styles; - size?: "xs" | "sm" | "md" | "lg" | "xl"; + size?: "sm" | "md" | "lg" | "xl"; /** The name of the icon to render */ children: string;