UNPKG

react-native-unicons

Version:
9 lines (8 loc) 671 B
import * as React from 'react'; import Svg, { Path } from 'react-native-svg'; function SvgRuler(props) { return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}> <Path d="M22.61 7.05L17 1.39a1 1 0 00-.71-.29 1 1 0 00-.7.29L1.39 15.54a1 1 0 000 1.41l5.66 5.66a1 1 0 00.71.29 1 1 0 00.7-.29l2.83-2.83 8.49-8.49 2.83-2.83a1 1 0 000-1.41zm-3.54 2.12l-.71-.71a1 1 0 00-1.41 0 1 1 0 000 1.42l.71.71L16.24 12l-2.12-2.12a1 1 0 00-1.41 1.41l2.12 2.12-1.42 1.42-.7-.71a1 1 0 10-1.42 1.42l.71.7-1.41 1.42-2.13-2.12a1 1 0 00-1.41 0 1 1 0 000 1.41l2.12 2.12-1.41 1.42-4.25-4.25L16.24 3.51l4.25 4.25z" fill="currentColor"/> </Svg>); } export default SvgRuler;