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

29 lines
737 B
TypeScript

import * as React from "react";
function SvgEmojiTalkingAngry(
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="M10 9H8m8 0h-2M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2 2 6.477 2 12zm12 6h-4v-3c0-.667.4-2 2-2s2 1.333 2 2v3z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgEmojiTalkingAngry);
export default ForwardRef;