UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.11 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"> <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="M12 2a1 1 0 0 1 .993.883L13 3.01a1 1 0 0 1-1.993.117L11 3a1 1 0 0 1 1-1m5.65 15.65a1 1 0 0 1 1.32-.083l.101.09a1 1 0 0 1-1.32 1.497l-.094-.083a1 1 0 0 1-.007-1.421m-12.714 0a1 1 0 0 1 1.497 1.32l-.083.094a1 1 0 0 1-1.504-1.313zm5.817-12.54a1 1 0 0 1 .99 1.566 4 4 0 0 0 5.58 5.58 1 1 0 0 1 1.566.99A7.002 7.002 0 0 1 5 12c0-3.44 2.482-6.3 5.753-6.889ZM9.095 7.93a5 5 0 1 0 6.975 6.975A6 6 0 0 1 9.096 7.93Zm8.29 1.237a1 1 0 0 1 1.263.636q.074.221.131.448a1 1 0 1 1-1.936.498 5 5 0 0 0-.094-.319 1 1 0 0 1 .636-1.263m-2.186-2.341a1 1 0 0 1 1.41-.094q.351.308.659.659a1 1 0 1 1-1.505 1.317 5 5 0 0 0-.47-.471 1 1 0 0 1-.094-1.411m-2.667-.886a1 1 0 0 1 1.217-.72q.227.06.448.132a1 1 0 1 1-.627 1.9 5 5 0 0 0-.32-.094 1 1 0 0 1-.718-1.218M4.929 4.93a1 1 0 0 1 1.32-.084l.094.083A1 1 0 0 1 5.03 6.433l-.094-.083a1 1 0 0 1-.007-1.42m12.728 0a1 1 0 0 1 1.497 1.32l-.09.1a1 1 0 0 1-1.497-1.32zM22 12a1 1 0 0 1-.883.993L20.99 13a1 1 0 0 1-.117-1.993L21 11a1 1 0 0 1 1 1m-10 7.99a1 1 0 0 1 .993.884L13 21a1 1 0 0 1-1.993.117L11 20.99a1 1 0 0 1 1-1M4.01 12a1 1 0 0 1-.883.993L3 13a1 1 0 0 1-.117-1.993L3.01 11a1 1 0 0 1 1 1"/> </G> </Svg>); }); Icon.displayName = 'MoonlightLine'; /** * MingCute Icon: Moonlight Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const MoonlightLine = Icon;