30 lines
1.2 KiB
TypeScript
30 lines
1.2 KiB
TypeScript
import React from "react"
|
|
|
|
export const ChatSettings = React.forwardRef<
|
|
SVGSVGElement,
|
|
React.SVGProps<SVGSVGElement>
|
|
>((props, ref) => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className="lucide lucide-message-circle-x"
|
|
viewBox="0 0 24 24"
|
|
ref={ref}
|
|
strokeWidth={2}
|
|
{...props}>
|
|
<path d="M7.9 20A9 9 0 104 16.1L2 22z"
|
|
></path>
|
|
<path
|
|
strokeWidth={1}
|
|
|
|
d="M12 2h-.44a2 2 0 00-2 2v.18a2 2 0 01-1 1.73l-.43.25a2 2 0 01-2 0l-.15-.08a2 2 0 00-2.73.73l-.22.38a2 2 0 00.73 2.73l.15.1a2 2 0 011 1.72v.51a2 2 0 01-1 1.74l-.15.09a2 2 0 00-.73 2.73l.22.38a2 2 0 002.73.73l.15-.08a2 2 0 012 0l.43.25a2 2 0 011 1.73V20a2 2 0 002 2H12a2 2 0 002-2v-.18a2 2 0 011-1.73l.43-.25a2 2 0 012 0l.15.08a2 2 0 002.73-.73l.22-.39a2 2 0 00-.73-2.73l-.15-.08a2 2 0 01-1-1.74v-.5a2 2 0 011-1.74l.15-.09a2 2 0 00.73-2.73l-.22-.38a2 2 0 00-2.73-.73l-.15.08a2 2 0 01-2 0L15 5.91a2 2 0 01-1-1.73V4a2 2 0 00-2-2z"
|
|
transform="matrix(.5 0 0 .5 6 6)"></path>
|
|
<circle cx="12" cy="12" r="0.5"></circle>
|
|
</svg>
|
|
)
|
|
})
|