UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.01 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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m-1.47 13.197-.747 1.12c-.317.476-.502 1.364.196 1.974.415.363 1.075.71 2.021.71s1.606-.347 2.021-.71c.698-.61.513-1.498.196-1.973l-.747-1.121a1.767 1.767 0 0 0-2.94 0m6.262-3.971-1.297.364a1.767 1.767 0 0 0-.909 2.796l.835 1.057c.354.448 1.142.9 1.938.424.473-.283 1.007-.803 1.3-1.703.292-.9.166-1.635-.051-2.142-.364-.853-1.267-.951-1.816-.796m-9.584 0c-.55-.155-1.452-.057-1.816.796-.217.507-.343 1.241-.05 2.142.292.9.825 1.42 1.3 1.703.748.447 1.49.074 1.87-.345l.067-.079.835-1.057a1.767 1.767 0 0 0-.772-2.752l-.137-.044-1.297-.365Zm.677-4.89c-.766.556-1.095 1.224-1.218 1.763-.206.903.466 1.513 1.001 1.711l1.264.468A1.767 1.767 0 0 0 11.31 8.55l-.054-1.347c-.023-.57-.395-1.398-1.318-1.48-.55-.05-1.288.057-2.053.613m8.23 0c-.765-.556-1.503-.663-2.052-.614-.87.078-1.25.816-1.311 1.378l-.008.103-.054 1.347a1.767 1.767 0 0 0 2.247 1.77l.131-.042 1.264-.468c.535-.198 1.207-.808 1.001-1.712-.122-.538-.452-1.206-1.218-1.762"/> </G> </Svg>); }); Icon.displayName = 'WheelFill'; /** * MingCute Icon: Wheel Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const WheelFill = Icon;