@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 696 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="M21 19v2h-2v-2zm-4 0v2h-2v-2zm-4 0v2h-2v-2zm-4 0v2H7v-2zm-4 0v2H3v-2zm16-4v2h-2v-2zM5 15v2H3v-2zm0-4v2H3v-2zm11-8a5 5 0 0 1 4.995 4.783L21 8v5h-2V8a3.01 3.01 0 0 0-2.824-2.995L16 5h-5V3zM5 7v2H3V7zm0-4v2H3V3zm4 0v2H7V3z"/>
</Svg>);
});
Icon.displayName = 'RoundedCorner';
/**
* Remix Icon: Rounded Corner
* @see {@link https://remixicon.com/icon/rounded-corner Remix Icon Docs}
*/
export const RoundedCorner = Icon;