UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.19 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.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="M20.485 3.515c-.33-.33-.935-.657-1.61-.905a9 9 0 0 0-2.673-.536c-1.79-.085-3.928.345-5.97 1.92a1 1 0 0 0-.093.04L7.31 5.45a1 1 0 0 0 .169 1.855 11.7 11.7 0 0 0-1.178 4.14c-.075.782-.129 1.93-.185 3.122-.023.502-.047 1.013-.073 1.507-.617.05-1.188.109-1.654.184-.49.08-1.042.177-1.438.503-.169.14-.436.437-.436.897 0 .923.832 1.777 1.442 2.386.609.61 1.463 1.442 2.386 1.442.46 0 .758-.267.897-.436.326-.396.423-.947.503-1.438a21 21 0 0 0 .184-1.654c.494-.026 1.004-.05 1.507-.073 1.192-.056 2.34-.11 3.122-.185a11.7 11.7 0 0 0 4.14-1.178 1 1 0 0 0 1.855.169l1.414-2.829a1 1 0 0 0 .042-.094c1.574-2.041 2.004-4.179 1.919-5.969a9 9 0 0 0-.536-2.673c-.248-.675-.574-1.28-.905-1.61ZM9.435 15.88c-.452.021-.917.043-1.383.067.024-.466.046-.931.067-1.382.053-1.137.101-2.184.173-2.932.2-2.108 1.054-4.051 2.294-5.29 1.9-1.9 3.912-2.349 5.52-2.272a7 7 0 0 1 2.078.414c.301.111.63.239.885.442l.002.001.001.002c.203.254.33.584.442.885.2.544.375 1.261.414 2.077.077 1.609-.372 3.622-2.271 5.521-1.24 1.24-3.182 2.094-5.29 2.294-.75.072-1.796.12-2.933.173Zm-4.469 2.312c.276-.037.594-.07.942-.102-.03.35-.064.667-.101.942a8 8 0 0 1-.84-.84Zm9.862-9.021A1.5 1.5 0 1 0 16.95 7.05a1.5 1.5 0 0 0-2.122 2.122Z"/> </G> </Svg>); }); Icon.displayName = 'FishLine'; /** * MingCute Icon: Fish Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const FishLine = Icon;