UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.78 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.17 2a1 1 0 0 1 .894.551l.05.116a2.001 2.001 0 0 0 3.716.143l.056-.143a1 1 0 0 1 .818-.66L14.829 2H15a5 5 0 0 1 4.995 4.783L20 7v.5a1.5 1.5 0 0 1-1.356 1.493L18.5 9H16v.948a2 2 0 0 0 .338 1.112l.1.137 2.028 2.535a7 7 0 0 1 1.528 4.075l.006.298V19a3 3 0 0 1-2.824 2.995L17 22H7a3 3 0 0 1-2.995-2.824L4 19v-.895a7 7 0 0 1 1.353-4.137l.18-.236 2.029-2.535a2 2 0 0 0 .43-1.08L8 9.947V9H5.5a1.5 1.5 0 0 1-1.493-1.356L4 7.5V7a5 5 0 0 1 4.783-4.995L9 2zm5.397 10H9.433a4 4 0 0 1-.31.446l-2.027 2.535A5 5 0 0 0 6 18.105V19a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-.895a5 5 0 0 0-1.096-3.124l-2.027-2.535a4 4 0 0 1-.31-.446m.878-7.967A4 4 0 0 1 12 6c-1.468 0-2.75-.79-3.445-1.967a3 3 0 0 0-2.55 2.788L6 7h2a2 2 0 0 1 1.995 1.85L10 9v1h4V9a2 2 0 0 1 1.85-1.995L16 7h2a3 3 0 0 0-2.555-2.967"/> </G> </Svg>); }); Icon.displayName = 'DressLine'; /** * MingCute Icon: Dress Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const DressLine = Icon;