Skip to content

Commit

Permalink
extend CheckboxIndeterminateIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
notsidney committed Sep 1, 2021
1 parent 44214cc commit 969a42a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/theme/CheckboxIndeterminateIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ export default function CheckboxIndeterminateIcon() {
},
"& .tick": {
stroke: (theme) => theme.palette.primary.contrastText,
strokeDasharray: 10,
strokeDashoffset: 10,
strokeDasharray: 12,
strokeDashoffset: 12,
transition: (theme) =>
theme.transitions.create(["stroke-dashoffset"], {
easing: theme.transitions.easing.easeIn,
Expand Down Expand Up @@ -69,7 +69,7 @@ export default function CheckboxIndeterminateIcon() {
}}
>
<svg viewBox="0 0 18 18">
<line x1="4" y1="9" x2="14" y2="9" stroke-width="2" className="tick" />
<line x1="3" y1="9" x2="15" y2="9" stroke-width="2" className="tick" />
</svg>
</Box>
);
Expand Down

0 comments on commit 969a42a

Please sign in to comment.