UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 638 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M24 12.024C17.563 12.412 12.41 17.563 12.023 24h-.047C11.588 17.563 6.436 12.412 0 12.024v-.047C6.437 11.588 11.588 6.437 11.976 0h.047c.388 6.437 5.54 11.588 11.977 11.977z"/> </Svg>); }); Icon.displayName = 'GeminiFill'; /** * Remix Icon: Gemini Fill * @see {@link https://remixicon.com/icon/gemini-fill Remix Icon Docs} */ export const GeminiFill = Icon;