-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9bc505
commit cb73b51
Showing
4 changed files
with
134 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import * as React from 'react'; | ||
import Svg, { G, Path } from 'react-native-svg'; | ||
|
||
const SvgRuler = props => ( | ||
<Svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={40} | ||
height={39} | ||
fill="none" | ||
{...props} | ||
> | ||
<G fill="#446127"> | ||
<Path | ||
d="m20.964 29.422 8.269-14.02c.98-1.662.4-3.779-1.298-4.738L23.843 8.35c-1.698-.96-3.86-.393-4.84 1.27l-8.27 14.02c-.98 1.661-.4 3.778 1.297 4.738l4.092 2.312c1.699.96 3.861.393 4.842-1.27" | ||
opacity={0.4} | ||
/> | ||
<Path d="m18.855 9.871 5.115 2.891c.42.237.566.774.324 1.185a.903.903 0 0 1-1.21.317l-5.115-2.89zM11.767 21.888l3.887 2.197c.42.237.567.774.325 1.184a.903.903 0 0 1-1.21.318L10.88 23.39zM14.153 17.842l5.102 2.937c.42.237.556.768.314 1.179l-.006.01c-.242.41-.785.544-1.215.301l-5.08-2.925zM16.492 13.877l2.66 1.503c.42.237.566.774.324 1.185a.903.903 0 0 1-1.21.317l-2.66-1.503z" /> | ||
</G> | ||
</Svg> | ||
); | ||
export default SvgRuler; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters