@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 598 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M9 8.482v7.036L15.03 12zM7.752 5.44l10.508 6.13a.5.5 0 0 1 0 .863l-10.508 6.13A.5.5 0 0 1 7 18.13V5.87a.5.5 0 0 1 .752-.431"/>
</Svg>);
});
Icon.displayName = 'PlayMiniLine';
/**
* Remix Icon: Play Mini Line
* @see {@link https://remixicon.com/icon/play-mini-line Remix Icon Docs}
*/
export const PlayMiniLine = Icon;