@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 715 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.032 12 6 9.86v4.28zm-4.244 5.443A.5.5 0 0 1 4 17.035V6.965a.5.5 0 0 1 .788-.409l7.133 5.035a.5.5 0 0 1 0 .817zM15 14.14 18.032 12 15 9.86zm-2-7.175a.5.5 0 0 1 .788-.409l7.133 5.035a.5.5 0 0 1 0 .817l-7.133 5.035a.5.5 0 0 1-.788-.408z"/>
</Svg>);
});
Icon.displayName = 'SpeedMiniLine';
/**
* Remix Icon: Speed Mini Line
* @see {@link https://remixicon.com/icon/speed-mini-line Remix Icon Docs}
*/
export const SpeedMiniLine = Icon;