@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 577 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const CodeView = /* @__PURE__ */ memo(function CodeView(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m16.95 8.464 1.414-1.414 4.95 4.95-4.95 4.95-1.414-1.414L20.485 12zm-9.9 0L3.515 12l3.535 3.536-1.414 1.414L.686 12l4.95-4.95z"/>
</Svg>);
});
/**
* Remix Icon: Code View
* @see {@link https://remixicon.com/icon/code-view Remix Icon Docs}
*/
export { CodeView };