fix(ui): remove unset from svg elements

This commit is contained in:
Thomas Osmonson
2020-05-15 09:11:34 -05:00
committed by Hank Stoever
parent 475f2c61ac
commit 576475c64d
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import { Box, BoxProps } from '../box';
export const CloseIcon: React.FC<BoxProps> = props => (
<Box {...props}>
<Svg width="100%" height="unset" viewBox="0 0 10 10">
<Svg width="100%" viewBox="0 0 10 10">
<path
fillRule="evenodd"
clipRule="evenodd"

View File

@@ -3,7 +3,7 @@ import { Box, BoxProps } from '../box';
export const ExclamationMarkCircleIcon: React.FC<BoxProps> = props => (
<Box {...props}>
<svg width="100%" height="unset" viewBox="0 0 16 16" fill="none">
<svg width="100%" viewBox="0 0 16 16" fill="none">
<path
fillRule="evenodd"
clipRule="evenodd"