UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.63 kB
import { memo } from 'react'; import { Svg, G, Path } from 'react-native-svg'; const Icon = (props) => { const { color = 'black', size = 24, ...otherProps } = props; return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}> <G fill="none"> <Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.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 .952.884L20 6.209a1 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.557C1.028 8.786 4.412 3.434 9.8 2.22a9.967 9.967 0 0 1 7.394 1.211l.327-1.628a1 1 0 0 1 1.021-.802m-4.778 6.5a1 1 0 1 1 0 2h-2.5v.696c.235-.043.489-.07.75-.07 1.896 0 3.188 1.458 3.188 3.187a3.188 3.188 0 0 1-6.11 1.275 1 1 0 0 1 1.78-.905l.053.104a1.188 1.188 0 0 0 2.277-.474c0-.688-.459-1.188-1.188-1.188a2.95 2.95 0 0 0-.887.168l-.208.075-.203.087a1 1 0 0 1-1.452-.892V8.938c0-.794.644-1.438 1.438-1.438z"/> </G> </Svg>); }; Icon.displayName = 'RewindForward5Line'; /** * MingCute Icon: Rewind Forward 5 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const RewindForward5Line = memo(Icon);