@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.99 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" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M19.788 5.627c.777-.359 1.68.204 1.783 1.114l.027.25.062.653.065.845.044.751.026.554.02.593.016.631.008.667v.683l-.008.647-.023.907-.022.56-.04.767-.062.88-.062.705-.054.517c-.1.866-.943 1.372-1.714 1.018l-.608-.29-.315-.157-.545-.28-.408-.218-.442-.242-.474-.267-.503-.292-.532-.318-.558-.344-.69-.439-.635-.42-.58-.397-.525-.37-.24-.174-.04.86-.049.755-.067.835-.062.62-.013.12c-.1.866-.943 1.372-1.714 1.018l-.608-.29-.315-.157-.545-.28-.408-.218-.442-.242-.722-.41-.518-.305-.27-.162-.557-.344-.58-.368-.275-.179-.523-.348-.485-.331-.446-.314-.594-.43-.344-.258-.562-.435-.308-.247c-.67-.546-.686-1.592-.042-2.117l.432-.345.607-.465.367-.271.407-.294.684-.479.503-.34.54-.353.575-.366.573-.353.277-.166.533-.313.503-.286.47-.26.436-.234.757-.39.589-.287.225-.105c.777-.359 1.68.204 1.783 1.114l.045.427.051.558.052.68.048.797.028.592.492-.353q.26-.185.547-.38l.599-.403a47 47 0 0 1 .992-.638l.573-.353.277-.166.533-.313.503-.286.47-.26.436-.234.757-.39.589-.287z"/>
</G>
</Svg>);
});
Icon.displayName = 'FastRewindFill';
/**
* MingCute Icon: Fast Rewind Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const FastRewindFill = Icon;