import { AllHTMLAttributes } from 'react';
import { BrandColors, PictoColors, Sizes } from './Logo.constants.js';

interface LogoProps extends Omit<AllHTMLAttributes<HTMLOrSVGElement>, 'size'> {
    brandVariant?: keyof typeof BrandColors;
    pictoVariant?: keyof typeof PictoColors;
    size?: `${Sizes}`;
}

export type { LogoProps };
