UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 686 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const DirectionLine = /* @__PURE__ */ memo(function DirectionLine(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M12 3.515 3.515 12 12 20.485 20.485 12zm.707-2.122 9.9 9.9a1 1 0 0 1 0 1.414l-9.9 9.9a1 1 0 0 1-1.414 0l-9.9-9.9a1 1 0 0 1 0-1.414l9.9-9.9a1 1 0 0 1 1.414 0M13 10V7.5l3.5 3.5-3.5 3.5V12h-3v3H8v-4a1 1 0 0 1 1-1z"/> </Svg>); }); /** * Remix Icon: Direction Line * @see {@link https://remixicon.com/icon/direction-line Remix Icon Docs} */ export { DirectionLine };