iconoir/packages/iconoir-react/src/server/Airplay.tsx

33 lines
765 B
TypeScript

import * as React from "react";
function SvgAirplay(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M6 17H3V4h18v13h-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8.622 19.067L11.5 14.75a.6.6 0 01.998 0l2.88 4.318a.6.6 0 01-.5.933H9.12a.6.6 0 01-.5-.933z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAirplay);
export default ForwardRef;