UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.47 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.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 3c2.592 0 4.986.465 6.77 1.258.89.396 1.674.893 2.247 1.496C21.596 6.362 22 7.122 22 8c0 1.365-.94 2.421-2.15 3.175.095.255.15.53.15.825 0 .847-.453 1.538-1.023 2.045a5.4 5.4 0 0 1-1.086.736c.07.226.109.466.109.719 0 1.004-.605 1.795-1.332 2.324a5.8 5.8 0 0 1-1.673.813c-.067.918-.807 1.509-1.426 1.818-.71.355-1.619.545-2.569.545s-1.86-.19-2.569-.545C7.782 20.131 7 19.497 7 18.5c0-.573.27-1.036.6-1.368-.363-.453-.6-.998-.6-1.632q0-.159.02-.313c-.649-.245-1.23-.546-1.704-.902C4.608 13.753 4 12.985 4 12c0-.294.055-.57.15-.825C2.94 10.42 2 9.365 2 8c0-.878.404-1.638.983-2.246.573-.603 1.356-1.1 2.247-1.496C7.014 3.465 9.408 3 12 3M9.272 18.362a1.3 1.3 0 0 0-.21.14c.05.041.132.098.264.164.377.189.967.334 1.674.334q.338-.001.636-.04a7.6 7.6 0 0 1-2.364-.599ZM16 15.502c-1.18.32-2.55.498-4 .498-1.032 0-2.022-.09-2.93-.257.094.178.3.408.725.646.64.358 1.594.611 2.705.611.382 0 .75-.03 1.094-.085.823-.133 1.476-.402 1.897-.708.426-.31.508-.57.509-.705m1.995-3.45C16.32 12.655 14.232 13 12 13s-4.319-.345-5.995-.948c.021.119.122.34.512.633.446.335 1.147.66 2.07.904.976.257 2.145.411 3.413.411 1.601 0 3.04-.245 4.126-.63.701-.25 1.208-.54 1.52-.818.26-.23.332-.4.35-.5ZM12 5c-2.379 0-4.484.43-5.958 1.085-.738.328-1.273.693-1.61 1.047C4.099 7.482 4 7.773 4 8c0 .453.457 1.198 1.992 1.892C7.467 10.559 9.592 11 12 11s4.534-.44 6.008-1.108C19.543 9.198 20 8.453 20 8c0-.227-.1-.518-.432-.868-.337-.354-.872-.719-1.61-1.047C16.484 5.431 14.378 5 12 5"/> </G> </Svg>); }); Icon.displayName = 'TornadoLine'; /** * MingCute Icon: Tornado Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const TornadoLine = Icon;