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 = 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.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="M9 2.5a1.5 1.5 0 0 1 1.493 1.356L10.5 4v.5H14a1.5 1.5 0 0 1 .144 2.993L14 7.5h-.617c-.284 1.826-1.078 3.571-2.284 5.12q.419.333.882.643l.315.203 1.836-4.082a1.5 1.5 0 0 1 2.67-.13l.066.13 4.5 10a1.5 1.5 0 0 1-2.67 1.36l-.066-.128-.952-2.116h-4.36l-.952 2.116a1.5 1.5 0 0 1-2.789-1.097l.053-.134 1.423-3.163a16 16 0 0 1-2.057-1.445 16.6 16.6 0 0 1-4.441 2.616 1.5 1.5 0 1 1-1.114-2.786 13.6 13.6 0 0 0 3.459-1.986 12.2 12.2 0 0 1-1.512-2.515 1.5 1.5 0 1 1 2.745-1.212A9 9 0 0 0 9 10.414c.583-.831 1-1.706 1.244-2.584l.083-.33H4a1.5 1.5 0 0 1-.145-2.993L4 4.5h3.5V4A1.5 1.5 0 0 1 9 2.5m6.5 11.155-.83 1.845h1.66z"/> </G> </Svg>); }); Icon.displayName = 'Translate2Fill'; /** * MingCute Icon: Translate 2 Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Translate2Fill = Icon;