UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.68 kB
import { memo } from 'react'; import { Svg, G, Path } from 'react-native-svg'; const Icon = (props) => { const { color = 'black', size = 24, ...otherProps } = props; return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}> <G fill="none"> <Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035c-.01-.004-.019-.001-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M3.468 16.745c.495-.958 1.54-1.6 2.804-1.441a33.75 33.75 0 0 1 3.97.726c2.01.502 3.771 1.467 5.073 2.348l.44.306.4.295.358.276.314.254.267.226.22.192c.843.751.27 1.978-.685 2.068l-.112.005H7.923c-1.682 0-3.08-.845-4.104-2.126-.774-.967-.84-2.183-.35-3.129ZM19 2c.893 0 1.278.84 1.467 1.61l.06.268.024.128c.144.797.221 1.842.252 2.916.06 2.125-.062 4.602-.327 5.795-.462 2.082-1.14 3.529-1.952 4.401-.826.89-1.942 1.291-2.971.776-.789-.394-1.26-1.331-1.518-2.13a5.734 5.734 0 0 1 .017-3.58c.21-.632.588-1.142 1.004-1.627l.363-.411c.442-.495.885-.99 1.187-1.593.44-.88.56-1.843.597-2.81l.014-.58.009-.56.006-.138.02-.28C17.347 3.107 17.716 2 19 2"/> </G> </Svg>); }; Icon.displayName = 'SeatFill'; /** * MingCute Icon: Seat Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const SeatFill = memo(Icon);