UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.25 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="M7.652 4.382c.026-.007.323-.068.861.603.514.641 1.066 1.759 1.511 3.42.327 1.22.538 2.515.616 3.67a1 1 0 0 0 1.043.932 7 7 0 0 1 .634 0 1 1 0 0 0 1.043-.931c.078-1.156.289-2.452.616-3.671.445-1.661.997-2.779 1.51-3.42.54-.671.836-.61.862-.603.026.006.313.102.444.953.124.812.044 2.056-.401 3.717a19.7 19.7 0 0 1-1.358 3.599 1 1 0 0 0 .35 1.286C16.448 14.629 17 15.565 17 16.5c0 .857-.461 1.71-1.357 2.382C14.746 19.554 13.46 20 12 20c-1.461 0-2.746-.445-3.643-1.118C7.461 18.21 7 17.357 7 16.5c0-.935.552-1.871 1.617-2.563a1 1 0 0 0 .35-1.286 19.6 19.6 0 0 1-1.358-3.6c-.445-1.66-.525-2.904-.4-3.716.13-.85.417-.947.443-.953m4.304 3.505c-.484-1.807-1.13-3.215-1.882-4.153-.728-.907-1.765-1.599-2.94-1.284-1.174.314-1.726 1.432-1.903 2.582-.182 1.188-.038 2.73.447 4.537a22 22 0 0 0 1.143 3.22C5.728 13.731 5 15.02 5 16.5c0 1.628.882 3.026 2.157 3.982S10.147 22 12 22s3.568-.562 4.843-1.518S19 18.128 19 16.5c0-1.482-.728-2.769-1.82-3.71a22 22 0 0 0 1.142-3.22c.485-1.807.629-3.35.447-4.538-.177-1.15-.729-2.268-1.903-2.582-1.175-.315-2.212.377-2.94 1.284-.752.938-1.398 2.346-1.882 4.153L12 8.054zm-1.373 9.106a1.5 1.5 0 1 1 2.834 0A1 1 0 0 0 13.5 17a1 1 0 1 1 0 2 2.5 2.5 0 0 1-1.5-.5 2.5 2.5 0 0 1-1.5.5 1 1 0 1 1 0-2 1 1 0 0 0 .083-.007"/> </G> </Svg>); }); Icon.displayName = 'RabbitLine'; /** * MingCute Icon: Rabbit Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const RabbitLine = Icon;