UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 763 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="m9.223 8.707-2.312 4.334 1.09-6.715zm1.145-2.148L7.695 1.353a.5.5 0 0 0-.938.148L4 18.5l1.748 1.093 5.192 3.244a2 2 0 0 0 2.12 0L20 18.5 18.142 5.961a.5.5 0 0 0-.841-.287l-2.735 2.637-2.125-3.984a.5.5 0 0 0-.882 0zm2.701 3.196L8.667 14 12 7.75zm-5.837 8.407 9.36-9.025 1.238 8.36L12 21.143z"/> </Svg>); }); Icon.displayName = 'FirebaseLine'; /** * Remix Icon: Firebase Line * @see {@link https://remixicon.com/icon/firebase-line Remix Icon Docs} */ export const FirebaseLine = Icon;