@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 612 B
JavaScript
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="M12 6C12.8284 6 13.5 5.32843 13.5 4.5C13.5 3.67157 12.8284 3 12 3C11.1716 3 10.5 3.67157 10.5 4.5C10.5 5.32843 11.1716 6 12 6ZM9 10H11V18H9V20H15V18H13V8H9V10Z"/>
</Svg>);
};
Icon.displayName = 'InfoI';
/**
* Remix Icon: Info I
* @see {@link https://remixicon.com/icon/info-i Remix Icon Docs}
*/
export const InfoI = memo(Icon);