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

31 lines
678 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBounceLeft(
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="M6 7a2 2 0 110-4 2 2 0 010 4zM21 15.5c-3-1-5.5-.5-8 4.5-.5-3-2-7.5-3.5-10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBounceLeft);
export default ForwardRef;