@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 = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M15 3V7.5H9V11.5H15V16.5H9V21H18C19.6569 21 21 19.6569 21 18V6C21 4.34315 19.6569 3 18 3H15ZM2 6C2 3.79086 3.79086 2 6 2H18C20.2091 2 22 3.79086 22 6V18C22 20.2091 20.2091 22 18 22H6C3.79086 22 2 20.2091 2 18V6Z"/>
</Svg>);
};
Icon.displayName = 'FriendicaFill';
/**
* Remix Icon: Friendica Fill
* @see {@link https://remixicon.com/icon/friendica-fill Remix Icon Docs}
*/
export const FriendicaFill = memo(Icon);