Files
metabuilder/fakemui/icons/Play.tsx

9 lines
268 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Play = (props: IconProps) => (
<Icon {...props}>
<path d="M72 39.9v176.2c0 9.1 9.9 14.7 17.6 10l144.2-88.1a11.6 11.6 0 0 0 0-20L89.6 29.9C81.9 25.2 72 30.8 72 39.9Z" />
</Icon>
)