@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 731 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="M4 2H14.5C17.8137 2 20.5 4.68629 20.5 8C20.5 10.1984 19.3177 12.1206 17.5543 13.1655C19.0376 14.2579 20 16.0166 20 18V21H18V18C18 15.7909 16.2091 14 14 14H4V12H14.5C16.7091 12 18.5 10.2091 18.5 8C18.5 5.79086 16.7091 4 14.5 4H4V2ZM11 21H4V19H11V21Z"/>
</Svg>);
};
Icon.displayName = 'RemixRunLine';
/**
* Remix Icon: Remix Run Line
* @see {@link https://remixicon.com/icon/remix-run-line Remix Icon Docs}
*/
export const RemixRunLine = memo(Icon);