@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 605 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="M1 11C6.52285 11 11 6.52285 11 1H13C13 6.52285 17.4772 11 23 11V13C17.4772 13 13 17.4772 13 23H11C11 17.4772 6.52285 13 1 13V11Z"/>
</Svg>);
};
Icon.displayName = 'ShiningFill';
/**
* Remix Icon: Shining Fill
* @see {@link https://remixicon.com/icon/shining-fill Remix Icon Docs}
*/
export const ShiningFill = memo(Icon);