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

35 lines
872 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBusOutline(
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 16.01l.01-.011M17 16.01l.01-.011M3 12h18v7a1 1 0 01-1 1H4a1 1 0 01-1-1v-7zM21 8V6a4 4 0 00-4-4H7a4 4 0 00-4 4v2M7 8h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4 20h4v2a1 1 0 01-1 1H5a1 1 0 01-1-1v-2zM16 20h4v2a1 1 0 01-1 1h-2a1 1 0 01-1-1v-2z"
fill="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBusOutline);
export default ForwardRef;