Adjust CloseIcon to match the figma design
This commit is contained in:
parent
6d380bf8a8
commit
4db46301a4
1 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,9 @@ import styled, { useTheme } from "styled-components";
|
||||||
const CloseIcon: React.FC<{ className?: string }> = ({ className }) => {
|
const CloseIcon: React.FC<{ className?: string }> = ({ className }) => {
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
return (
|
return (
|
||||||
<svg width="10"
|
<svg width="9"
|
||||||
height="10"
|
height="9"
|
||||||
viewBox="0 0 10 10"
|
viewBox="0 0 9 9"
|
||||||
className={className}
|
className={className}
|
||||||
fill={theme.icons.closeIcon.normal}
|
fill={theme.icons.closeIcon.normal}
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
xmlns="http://www.w3.org/2000/svg">
|
||||||
|
|
Loading…
Add table
Reference in a new issue