iconoir/packages/iconoir-react-native/src/Tree.tsx
2022-06-08 08:59:39 +00:00

31 lines
693 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgTree(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 22v-8m0-4v4m0 0l4-2M17 7A5 5 0 007 7M12 18H7.5a5.5 5.5 0 110-11H9M12 18h4.5A5.5 5.5 0 0017 7.022"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTree);
export default ForwardRef;