@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 639 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="M16 3H8a4 4 0 0 0-4 4v1a5 5 0 0 1 5 5h6a5 5 0 0 1 5-5V7a4 4 0 0 0-4-4m4 7a3 3 0 0 0-3 3v3h-2v-1H9v1H7v-3a3 3 0 1 0-4 2.83V21h2v-1h14v1h2v-5.17A3.001 3.001 0 0 0 20 10"/>
</Svg>);
});
Icon.displayName = 'ArmchairFill';
/**
* Remix Icon: Armchair Fill
* @see {@link https://remixicon.com/icon/armchair-fill Remix Icon Docs}
*/
export const ArmchairFill = Icon;