iconoir/packages/iconoir-react-native/src/SoundLow.tsx
2023-01-11 18:09:27 +00:00

39 lines
1,009 B
TypeScript

import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSoundLow(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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="M18.5 7.5S20 9 20 11.5s-1.5 4-1.5 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4 14v-4a1 1 0 011-1h2.697a1 1 0 00.555-.168l4.193-2.796A1 1 0 0114 6.87V17.13a1 1 0 01-1.555.832l-4.193-2.795A1 1 0 007.697 15H5a1 1 0 01-1-1z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSoundLow);
export default ForwardRef;