UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.22 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="M14 6.24c.335 0 .588.141.777.342.305.324.434.801.624 1.196a11.7 11.7 0 0 0 4.429 4.91l.434.257c.393.239.735.518.736 1.053.001.732-.636.986-1.17 1.313a11.7 11.7 0 0 0-4.429 4.91c-.19.396-.32.873-.624 1.197-.188.201-.442.342-.777.342s-.589-.141-.777-.342c-.176-.187-.292-.422-.395-.662l-.15-.36a4 4 0 0 0-.079-.174 11.7 11.7 0 0 0-4.429-4.91l-.321-.191c-.433-.26-.85-.556-.849-1.123.002-.73.637-.982 1.17-1.309a11.7 11.7 0 0 0 4.429-4.91c.19-.396.32-.873.624-1.197.188-.2.442-.342.777-.342m-.001 3.176c-1.041 1.812-2.435 3.418-4.181 4.584 1.743 1.177 3.13 2.771 4.182 4.583 1.053-1.814 2.45-3.388 4.18-4.583-1.738-1.186-3.129-2.772-4.181-4.584m-7.252-3.59c.149.182.238.39.34.6.274.57.688 1.06 1.201 1.422l.198.13c.856.525.888 1.41.12 1.964l-.12.08a3.7 3.7 0 0 0-1.4 1.552l-.114.242c-.097.2-.21.391-.406.518-.315.202-.817.202-1.132 0-.265-.17-.39-.488-.52-.76a3.7 3.7 0 0 0-1.4-1.552c-.178-.11-.348-.213-.495-.367a1.08 1.08 0 0 1 .001-1.312c.15-.156.31-.252.495-.365a3.7 3.7 0 0 0 1.399-1.552c.104-.216.187-.414.34-.6a1.07 1.07 0 0 1 1.493 0M6 8.42a5 5 0 0 1-.376.42L5.457 9l.167.16q.197.2.376.418.178-.219.377-.419L6.54 9l-.164-.16A4 4 0 0 1 6 8.422ZM10 2a1 1 0 0 1 1 1 1 1 0 1 1 0 2 1 1 0 1 1-2 0 1 1 0 1 1 0-2 1 1 0 0 1 1-1"/> </G> </Svg>); }); Icon.displayName = 'Sparkles2Line'; /** * MingCute Icon: Sparkles 2 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Sparkles2Line = Icon;