UNPKG

@kadconsulting/dry

Version:
13 lines (12 loc) 329 B
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;