UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 787 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="m21.678 7.98-1.414 1.413-2.122-2.12-2.121 2.12 3.536 3.536-1.415 1.414-.707-.707L11.071 20H5.414l-2.12 2.121-1.415-1.414L4 18.586v-5.657l6.364-6.364-.707-.707 1.414-1.414 3.536 3.535 2.121-2.121-2.121-2.121 1.414-1.415zm-12.02 6.363-2.83-2.828-1.414 1.414 2.829 2.828zm2.828-2.828L9.657 8.686l-1.414 1.415 2.828 2.828z"/> </Svg>); }); Icon.displayName = 'SyringeFill'; /** * Remix Icon: Syringe Fill * @see {@link https://remixicon.com/icon/syringe-fill Remix Icon Docs} */ export const SyringeFill = Icon;