import clsx from 'clsx' import type { BrandColor } from 'components/BrandColorPicker' import { BrandColorPicker } from 'components/BrandColorPicker' import type { ComponentType, SVGProps } from 'react' import { useState } from 'react' import { FaDownload } from 'react-icons/fa' export interface BrandPreviewProps { name: string id?: string url?: string Asset: ComponentType> } export const BrandPreview = ({ name, id = '', url, Asset }: BrandPreviewProps) => { const [color, setColor] = useState('plumbus') return (
{name} {url && ( Download SVG )}

) }