From b32553ef00d85128a7995a82532978b16703a2d9 Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Mon, 6 Aug 2018 11:40:50 -0300 Subject: [PATCH] removing xs size --- src/core/client/ui/components/Icon/Icon.css | 4 ---- src/core/client/ui/components/Icon/Icon.mdx | 1 - src/core/client/ui/components/Icon/Icon.tsx | 2 +- 3 files changed, 1 insertion(+), 6 deletions(-) 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;