import { FC } from "react" interface AnthropicSVGProps { height?: number width?: number className?: string } export const AnthropicSVG: FC = ({ height = 40, width = 40, className }) => { return ( ) }