UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.68 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 2c2.173 0 4.186.694 5.826 1.872l.244-.316.11-.133a1.064 1.064 0 0 1 1.64 0l.246.307.275.367.21.298q.055.08.11.163l.225.348.113.184C21.459 5.857 22 6.952 22 8c0 .486-.122.963-.345 1.388.225.834.345 1.71.345 2.612 0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m0 2a8 8 0 1 0 7.92 6.86A3 3 0 0 1 19 11c-1.82 0-3-1.515-3-3 0-.614.184-1.224.403-1.746q.153-.361.335-.7A7.96 7.96 0 0 0 12 4m0 10a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2zm-3-4a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2zm6 0a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2zm4-4.329-.124.19a8 8 0 0 0-.629 1.168c-.17.404-.247.733-.247.971 0 .515.414 1 1 1a.96.96 0 0 0 .78-.377c.144-.186.22-.412.22-.623 0-.462-.279-1.15-.717-1.882q-.142-.236-.283-.447"/> </G> </Svg>); }); Icon.displayName = 'SweatsLine'; /** * MingCute Icon: Sweats Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const SweatsLine = Icon;