Skip to content

Commit 51c960f

Browse files
committed
fix(icons): 🐛 fix sizing of icon
1 parent ae9f92e commit 51c960f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/icons/FastBackward.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { IconProps } from "../utils/types";
55

66
export const FastBackward: React.FC<IconProps> = ({ fill = "#525252" }) => {
77
return (
8-
<Svg width="12" height="12" viewBox="0 0 12 12" fill="none">
8+
<Svg width="100%" height="100%" viewBox="0 0 12 12" fill="none">
99
<Path
1010
fillRule="evenodd"
1111
clipRule="evenodd"

src/icons/Slot.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const Slot: React.FC<IconProps> = ({ fill = "#525252" }) => {
1616
</G>
1717
<Defs>
1818
<ClipPath id="clip0_2866_43368">
19-
<Rect width="100%" height="100%" fill="white" />
19+
<Rect width="12" height="12" fill="white" />
2020
</ClipPath>
2121
</Defs>
2222
</Svg>

0 commit comments

Comments
 (0)