@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 593 B
JavaScript
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="M8 5h3v14H8v2h8v-2h-3V5h3V3H8zM2 7a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6v-2H3V9h5V7zm14 2h5v6h-5v2h6a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-6z"/>
</Svg>);
});
Icon.displayName = 'InputField';
/**
* Remix Icon: Input Field
* @see {@link https://remixicon.com/icon/input-field Remix Icon Docs}
*/
export const InputField = Icon;