iconoir/packages/iconoir-react-native/src/Skateboard.tsx

31 lines
701 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSkateboard(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7.5 16a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM3 9l3 1h12l3-1M16.5 16a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSkateboard);
export default ForwardRef;