Skip to content

Commit e281ca0

Browse files
authored
fix(ui): align PlayOutline icon with filled Play shape (#4169)
The PlayOutline icon had a non-standard viewBox and mismatched path, causing it to render at an inconsistent size and shape compared to the filled Play icon and other action bar icons.
1 parent cbf0a13 commit e281ca0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/components/emcn/icons/play.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function PlayOutline(props: SVGProps<SVGSVGElement>) {
3232
<svg
3333
width='24'
3434
height='24'
35-
viewBox='-1 -2 24 24'
35+
viewBox='0 0 24 24'
3636
fill='none'
3737
stroke='currentColor'
3838
strokeWidth='1.75'
@@ -42,7 +42,7 @@ export function PlayOutline(props: SVGProps<SVGSVGElement>) {
4242
aria-hidden='true'
4343
{...props}
4444
>
45-
<path d='M7.5 3.5C7.5 2.672 8.452 2.18 9.128 2.66L18.128 9.16C18.72 9.58 18.72 10.46 18.128 10.88L9.128 17.38C8.452 17.86 7.5 17.368 7.5 16.54V3.5Z' />
45+
<path d='M14.26 5.39C16.17 6.48 17.67 7.33 18.73 8.11C19.81 8.89 20.6 9.71 20.89 10.79C21.09 11.58 21.09 12.42 20.89 13.21C20.6 14.29 19.81 15.11 18.73 15.89C17.67 16.67 16.17 17.52 14.26 18.61C12.42 19.65 10.87 20.53 9.69 21.04C8.51 21.54 7.42 21.8 6.37 21.5C5.6 21.28 4.89 20.86 4.33 20.29C3.56 19.51 3.25 18.44 3.1 17.15C2.96 15.87 2.96 14.19 2.96 12.06V11.94C2.96 9.81 2.96 8.13 3.1 6.85C3.25 5.56 3.56 4.49 4.33 3.71C4.89 3.14 5.6 2.72 6.37 2.5C7.42 2.2 8.51 2.46 9.69 2.96C10.87 3.47 12.42 4.35 14.26 5.39Z' />
4646
</svg>
4747
)
4848
}

0 commit comments

Comments
 (0)