@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 512 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="M8 12L14 6V18L8 12Z"/>
</Svg>);
};
Icon.displayName = 'ArrowLeftSFill';
/**
* Remix Icon: Arrow Left S Fill
* @see {@link https://remixicon.com/icon/arrow-left-s-fill Remix Icon Docs}
*/
export const ArrowLeftSFill = memo(Icon);