UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.14 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" fillRule="evenodd"> <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="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.009c-.166.006-.332.009-.5.009l-.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.49 10.49 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.13 8.13 0 0 0 12 16.839a8.04 8.04 0 0 0 1.293-1.046C14.183 14.902 15 13.64 15 12s-.816-2.902-1.707-3.793A8.133 8.133 0 0 0 12 7.161m-3.308.296A9.078 9.078 0 0 0 6.19 8.589C4.74 9.556 4 10.781 4 12c0 1.219.74 2.444 2.19 3.41a9.08 9.08 0 0 0 2.502 1.134C7.795 15.45 7 13.932 7 12c0-1.932.795-3.45 1.692-4.544m6.616 0C16.205 8.55 17 10.068 17 12c0 1.932-.795 3.45-1.692 4.544a9.081 9.081 0 0 0 2.501-1.133C19.26 14.444 20 13.219 20 12c0-1.219-.74-2.444-2.19-3.41a9.079 9.079 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 = memo(Icon);