@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 651 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.6568L16.9289 16.2426L21.1716 12L16.9289 7.75735L18.3431 6.34314L24 12ZM2.82843 12L7.07107 16.2426L5.65685 17.6568L0 12L5.65685 6.34314L7.07107 7.75735L2.82843 12Z"/>
</Svg>);
};
Icon.displayName = 'CodeSLine';
/**
* Remix Icon: Code S Line
* @see {@link https://remixicon.com/icon/code-s-line Remix Icon Docs}
*/
export const CodeSLine = memo(Icon);