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.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="M17 3a4 4 0 0 1 3.995 3.8L21 7v10a4 4 0 0 1-3.8 3.995L17 21H7a4 4 0 0 1-3.995-3.8L3 17V7a4 4 0 0 1 3.8-3.995L7 3zm-5 2a7 7 0 1 0 0 14 7 7 0 0 0 0-14M8.5 9.9c1.35 0 2.501.894 3.717 2.047l.537.52c.513.5 1.044 1.017 1.57 1.422.635.49 1.38.911 2.226.911q.159 0 .312-.02A5.6 5.6 0 0 1 12 17.6a5.59 5.59 0 0 1-4.48-2.239q.468.137.98.139c1.799 0 3.243-.959 4.422-1.9l-.337-.322-.68-.66C10.824 13.463 9.753 14.1 8.5 14.1a2.1 2.1 0 1 1 0-4.2M12 6.4a5.6 5.6 0 0 1 5.23 3.596 2.5 2.5 0 0 0-.68-.096c-.83 0-1.588.368-2.263.824l-.181.127.385.374.441.421q.106.1.21.191c.548-.361.998-.537 1.408-.537a1.05 1.05 0 1 1 0 2.1c-.379 0-.816-.191-1.372-.62-.303-.234-.608-.51-.929-.816l-1.008-.975-.34-.32-.357-.322C11.45 9.387 10.121 8.5 8.5 8.5q-.512.001-.98.139A5.6 5.6 0 0 1 12 6.4"/> </G> </Svg>); }); Icon.displayName = 'SiriFrameFill'; /** * MingCute Icon: Siri Frame Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const SiriFrameFill = Icon;