UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 688 B
import { memo } from 'react'; import { Svg, Path } from 'react-native-svg'; const Icon = (props) => { const { color = 'black', size = 24, ...otherProps } = props; return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}> <Path d="M20.998 3V21H2.99805V3H20.998ZM12.997 6H10.997L6.59805 17H8.75205L9.95105 14H14.041L15.242 17H17.397L12.997 6ZM11.997 8.88517L13.242 12H10.75L11.997 8.88517Z"/> </Svg>); }; Icon.displayName = 'CharacterRecognitionFill'; /** * Remix Icon: Character Recognition Fill * @see {@link https://remixicon.com/icon/character-recognition-fill Remix Icon Docs} */ export const CharacterRecognitionFill = memo(Icon);