@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 722 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="M24 12L18.3431 17.6569L16.9289 16.2426L21.1716 12L16.9289 7.75736L18.3431 6.34315L24 12ZM2.82843 12L7.07107 16.2426L5.65685 17.6569L0 12L5.65685 6.34315L7.07107 7.75736L2.82843 12ZM9.78845 21H7.66009L14.2116 3H16.3399L9.78845 21Z"/>
</Svg>);
};
Icon.displayName = 'CodeSSlashFill';
/**
* Remix Icon: Code S Slash Fill
* @see {@link https://remixicon.com/icon/code-s-slash-fill Remix Icon Docs}
*/
export const CodeSSlashFill = memo(Icon);