@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 743 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="M4.001 3h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-16a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1m1 2v14h14V5zm2.5 4a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3m-1 1h2v7.5h-2zm5.5.43c.584-.565 1.266-.93 2-.93 2.071 0 3.5 1.679 3.5 3.75v4.25h-2v-4.25a1.75 1.75 0 1 0-3.5 0v4.25h-2V10h2z"/>
</Svg>);
});
Icon.displayName = 'LinkedinBoxLine';
/**
* Remix Icon: Linkedin Box Line
* @see {@link https://remixicon.com/icon/linkedin-box-line Remix Icon Docs}
*/
export const LinkedinBoxLine = Icon;