mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
13 lines
389 B
TypeScript
13 lines
389 B
TypeScript
import { Icon } from "@chakra-ui/react";
|
|
|
|
export default function PlayIcon(props) {
|
|
return (
|
|
<Icon viewBox="0 0 30 30" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
d="M27 13.2679C28.3333 14.0377 28.3333 15.9622 27 16.732L10.5 26.2583C9.16666 27.0281 7.5 26.0659 7.5 24.5263L7.5 5.47372C7.5 3.93412 9.16667 2.97187 10.5 3.74167L27 13.2679Z"
|
|
/>
|
|
</Icon>
|
|
);
|
|
}
|