UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.71 kB
import { memo } from 'react'; import { Svg, G, Path } from 'react-native-svg'; const Icon = (props) => { const { color = 'black', size = 24, ...otherProps } = props; return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}> <G fill="none"> <Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M7 9c1.786 0 3.33 1.096 4.929 2.568l.458.43.691.669c.733.714 1.49 1.453 2.241 2.031.908.7 1.972 1.302 3.181 1.302a3.501 3.501 0 0 0 3.427-2.785C21.327 18.165 17.112 22 12 22 6.477 22 2 17.523 2 12a5 5 0 0 0 5 5c2.57 0 4.633-1.37 6.318-2.714l-.325-.308-1.128-1.095C10.32 14.089 8.788 15 7 15a3 3 0 1 1 0-6m5-7c5.523 0 10 4.477 10 10l-.005.314A3.5 3.5 0 0 0 18.5 9c-1.162 0-2.204.497-3.121 1.103a12.47 12.47 0 0 0-.371.255l.745.723.497.47c.08.074.16.146.238.216.783-.516 1.426-.767 2.012-.767a1.5 1.5 0 0 1 0 3c-.54 0-1.165-.273-1.96-.886-.464-.357-.93-.785-1.425-1.259l-1.3-1.26-.395-.374-.412-.378C11.4 8.396 9.43 7 7 7a5 5 0 0 0-4.995 4.783L2 11.937l.003-.217C2.152 6.327 6.57 2 12 2"/> </G> </Svg>); }; Icon.displayName = 'SiriFill'; /** * MingCute Icon: Siri Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const SiriFill = memo(Icon);