UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.78 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="M5.567 10.592c.075-.883.108-1.77.157-2.655a6.286 6.286 0 0 1 12.552 0c.05.91.09 1.818.184 2.724q.292.627.57 1.316c1.242 3.073 1.73 5.773 1.09 6.032-.336.135-.914-.425-1.566-1.431a5 5 0 0 1-.067.322 6.7 6.7 0 0 1-1.899 3.27c1.028.35 1.912.827 1.912 1.33 0 .509-2.48.503-4.238.5-.549-.002-1.012-.008-1.382-.058a6.7 6.7 0 0 1-1.76 0c-.37.05-.832.056-1.382.057-1.758.004-4.238.01-4.238-.499 0-.503.884-.98 1.912-1.33a6.7 6.7 0 0 1-1.899-3.27 7 7 0 0 1-.077-.316c-.65 1.002-1.227 1.56-1.561 1.425-.64-.259-.153-2.96 1.089-6.032.195-.483.398-.948.603-1.385M7.72 8.048a4.286 4.286 0 0 1 8.558 0L16.443 11h.002c0 1.079.526 1.973.992 2.906a1.146 1.146 0 0 0-.769 1.15A4.68 4.68 0 0 1 12 20c-2.682 0-4.817-2.262-4.668-4.944.033-.602-.375-1-.745-1.142-.047-.018.969-1.903.969-2.914h.001l.164-2.952Z"/> </G> </Svg>); }); Icon.displayName = 'QqLine'; /** * MingCute Icon: Qq Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const QqLine = Icon;