@kadconsulting/dry
Version:
KAD Reusable Component Library
13 lines (12 loc) • 329 B
TypeScript
import './Logo.scss';
import type { FC } from 'react';
import { StaticImport } from '../@primitives/Image/ImageTypes';
type Props = {
colorVariant?: 'white' | 'black';
logoUrl?: StaticImport | string;
isnextjs?: boolean;
width?: number;
height?: number;
};
declare const Logo: FC<Props>;
export default Logo;