@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.9 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M18.541 1a1 1 0 0 1 .933.773l.02.11.505 4.326a1 1 0 0 1-1.771.745A8 8 0 1 0 20 11.996a1 1 0 1 1 2 .002c-.007 4.567-3.16 8.686-7.804 9.733-5.388 1.214-10.74-2.17-11.954-7.557S4.412 3.434 9.8 2.22a9.96 9.96 0 0 1 7.112 1.046l.282.165.327-1.628a1 1 0 0 1 1.021-.802m-3.54 6.5a2.5 2.5 0 0 1 2.5 2.5v4a2.5 2.5 0 0 1-5 0v-4A2.5 2.5 0 0 1 15 7.5m-6.222 0a2.72 2.72 0 0 1 2.073 4.484 2.7 2.7 0 0 1-1.88 4.448l-.171.006h-.3a2.3 2.3 0 0 1-2.04-1.243l-.073-.156-.093-.22a1 1 0 0 1 1.789-.887l.052.105.094.221c.037.087.112.15.202.171l.069.009h.3a.7.7 0 0 0 .555-1.125l-.077-.086-.062-.057a.64.64 0 0 0-.336-.163L8.786 13a1 1 0 0 1-.117-1.993L8.786 11a.56.56 0 0 0 .328-.106l.067-.057.106-.105a.72.72 0 0 0-.41-1.225L8.78 9.5H8.5a.3.3 0 0 0-.237.12l-.034.06-.094.22a1 1 0 0 1-1.88-.67l.039-.11.094-.221a2.3 2.3 0 0 1 1.94-1.392L8.5 7.5zM15 9.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 1 0v-4a.5.5 0 0 0-.5-.5"/>
</G>
</Svg>);
});
Icon.displayName = 'RewindForward30Line';
/**
* MingCute Icon: Rewind Forward 30 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const RewindForward30Line = Icon;