UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

19 lines (18 loc) 486 B
import { BoxProps } from "../box/box.types.js"; //#region src/logo/logo.types.d.ts type LogoData = { /** Brand name. */ brand?: 'veracity' | 'dnv'; /** Loads logo svg from the given source. */ src?: string; /** Renders logo wrapper as a link with given url as href. */ url?: string; styles?: { container?: BoxProps; svg?: BoxProps; }; }; type LogoProps = BoxProps & LogoData; //#endregion export { LogoData, LogoProps }; //# sourceMappingURL=logo.types.d.ts.map