@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 677 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const RewindLine = /* @__PURE__ */ memo(function RewindLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m12 10.667 9.223-6.149a.5.5 0 0 1 .777.416v14.132a.5.5 0 0 1-.777.416L12 13.333v5.733a.5.5 0 0 1-.777.416L.624 12.416a.5.5 0 0 1 0-.832l10.599-7.066a.5.5 0 0 1 .777.416zm-2 5.596V7.737L3.606 12zm10 0V7.737L13.606 12z"/>
</Svg>);
});
/**
* Remix Icon: Rewind Line
* @see {@link https://remixicon.com/icon/rewind-line Remix Icon Docs}
*/
export { RewindLine };