removing xs size

This commit is contained in:
Belen Curcio
2018-08-06 11:40:50 -03:00
parent 797b8cacc8
commit b32553ef00
3 changed files with 1 additions and 6 deletions
@@ -36,10 +36,6 @@
-moz-osx-font-smoothing: grayscale;
}
.xs {
font-size: 14px;
width: 14px;
}
.sm {
font-size: 18px;
width: 18px;
@@ -14,7 +14,6 @@ Checkout available icons https://material.io/tools/icons/
## Basic usage
<Playground>
<Icon size="xsm">face</Icon>
<Icon size="sm">face</Icon>
<Icon size="md">face</Icon>
<Icon size="lg">face</Icon>
+1 -1
View File
@@ -13,7 +13,7 @@ interface InnerProps extends HTMLAttributes<HTMLSpanElement> {
*/
classes: typeof styles;
size?: "xs" | "sm" | "md" | "lg" | "xl";
size?: "sm" | "md" | "lg" | "xl";
/** The name of the icon to render */
children: string;