UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

11 lines (10 loc) 685 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 28 28" width={size} height={size} {...props}> <Path d="M21.75 4H9.77c-.91 0-1.66.7-1.73 1.6v7.11l-.02 4.16v.12h-1.5v-3.53l.01-1.5H4V23.5h19.5V5.75c0-.97-.78-1.75-1.75-1.75m-1.28 15.71-8.98-.02v-1.5l8.98.02zm0-2.58h-8.98v-1.51h8.98zm-.66-4.33a2.73 2.73 0 0 1-3.89-.01c-.51-.5-.8-1.19-.8-1.93s.29-1.44.81-1.95c.5-.51 1.19-.8 1.94-.8 1.51 0 2.75 1.23 2.75 2.75 0 .74-.29 1.43-.81 1.94"/> </Svg>); }); Icon.displayName = 'FeedActive'; export const FeedActive = Icon;