Renders the Figma brand icon as an inline SVG React component with configurable size and color. ## Key Components - **`FigmaIconProps`** — Interface accepting optional `className` (default: `'w-6 h-6'`) and `color` (default: `'currentColor'`) props - **`FigmaIcon`** — Deprecated SVG icon component rendering the Figma logo at a 256×256 viewBox > **Deprecated:** Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { FigmaIcon } from './figma-icon'; // Default size and inherited color // Custom size and explicit color ``` ## Notes - The `color` prop maps directly to the SVG `fill` attribute, so passing `'currentColor'` inherits the parent element's CSS `color` value. - The rendered SVG is always `800×800` in pixel dimensions but scales via the `className` Tailwind utilities. - This component is marked `@deprecated`; migrate to the [`icons-v2-generated`](https://github.com/flamingo-stack/openframe-oss-lib) package for future-proof icon usage.