UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.45 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="M3.468 16.745c.494-.958 1.539-1.6 2.804-1.441 1.214.152 2.588.38 3.97.726 2.247.562 4.181 1.7 5.513 2.654l.4.295.184.14.336.266.291.24.347.302c.844.751.27 1.978-.684 2.068l-.112.005H7.922a5 5 0 0 1-3.741-1.683l-.163-.194-.2-.249c-.773-.967-.838-2.183-.35-3.129m2.556.543c-.4-.05-.653.131-.779.374a.85.85 0 0 0 .054.848l.081.115.2.25a3 3 0 0 0 2.148 1.119l.194.006h6.221c-1.15-.773-2.677-1.603-4.386-2.03a32 32 0 0 0-3.733-.681ZM19 2c.62 0 1.074.338 1.36.704.273.347.45.78.573 1.196.25.843.367 1.927.412 3.009.037.911.024 1.876-.023 2.776l-.042.66c-.07.968-.18 1.815-.304 2.372-.533 2.398-1.465 3.847-2.508 4.637-.999.756-2.157.92-2.915.54-.331-.165-.652-.462-.918-.77a5.7 5.7 0 0 1-.801-1.237c-.466-.975-.753-2.293-.283-3.703.291-.873.852-1.417 1.346-1.824l.318-.256c.563-.448 1.031-.832 1.39-1.551.093-.186.161-.56.177-1.195l.003-.303-.008-.746c-.005-.3-.01-.617-.007-.924.007-.65.048-1.42.3-2.047.134-.333.348-.681.697-.945A2 2 0 0 1 19 2m-.097 2.15c-.083.252-.127.66-.133 1.255v.282l.009.689c.005.335.01.688.002 1.03-.016.642-.076 1.42-.387 2.041-.435.872-.993 1.437-1.49 1.86l-.29.24-.153.121c-.595.474-.869.717-1.012 1.148-.264.79-.12 1.563.19 2.208.153.323.34.595.513.796.08.094.149.161.199.206l.075.064.095-.004c.133-.011.394-.064.74-.326.547-.415 1.296-1.375 1.763-3.477.042-.191.084-.436.123-.721l.056-.457q.015-.12.026-.248l.047-.53.039-.568.016-.295.023-.606a27 27 0 0 0-.007-1.867c-.043-1.027-.152-1.917-.332-2.523a3 3 0 0 0-.112-.319Z"/> </G> </Svg>); }); Icon.displayName = 'SeatLine'; /** * MingCute Icon: Seat Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const SeatLine = Icon;