UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2 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="M12 2a1 1 0 0 1 .993.883L13 3v1h1a1 1 0 0 1 .993.883L15 5h1a1 1 0 0 1 .997.924c.696.278 1.341.614 1.922 1.001C20.726 8.13 22 9.905 22 12s-1.274 3.87-3.081 5.075c-1.125.75-2.493 1.31-4.004 1.627l-.415.08V21a1 1 0 0 1-1.993.117L12.5 21v-2.009Q12.251 19 12 19l-.25-.002-.25-.007V21a1 1 0 0 1-1.993.117L9.5 21v-2.218c-1.675-.297-3.192-.89-4.419-1.707C3.274 15.87 2 14.095 2 12s1.274-3.87 3.081-5.075a10.5 10.5 0 0 1 1.922-1.001 1 1 0 0 1 .877-.917L8 5h1a1 1 0 0 1 .883-.993L10 4h1V3a1 1 0 0 1 1-1m0 5.16c-.34.222-.818.572-1.293 1.047C9.817 9.098 9 10.36 9 12s.816 2.902 1.707 3.793A8 8 0 0 0 12 16.839a8 8 0 0 0 1.293-1.046C14.183 14.902 15 13.64 15 12s-.816-2.902-1.707-3.793A8 8 0 0 0 12 7.161m-3.308.296A9 9 0 0 0 6.19 8.589C4.74 9.556 4 10.781 4 12s.74 2.444 2.19 3.41a9 9 0 0 0 2.502 1.134C7.795 15.45 7 13.932 7 12s.795-3.45 1.692-4.544m6.616 0C16.205 8.55 17 10.068 17 12s-.795 3.45-1.692 4.544a9 9 0 0 0 2.501-1.133C19.26 14.444 20 13.219 20 12s-.74-2.444-2.19-3.41a9 9 0 0 0-2.502-1.134"/> </G> </Svg>); }); Icon.displayName = 'LanternLine'; /** * MingCute Icon: Lantern Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const LanternLine = Icon;