UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

15 lines (14 loc) 662 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { ForwardRefExoticComponent, RefAttributes, SVGProps } from 'react'; export type LogoBrand = 'amsterdam' | 'ggd-amsterdam' | 'museum-weesp' | 'stadsarchief' | 'stadsbank-van-lening' | 'vga-verzekeringen'; export type LogoProps = { /** The name of the brand for which to display the logo. */ brand?: LogoBrand; } & SVGProps<SVGSVGElement>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-media-logo--docs Logo docs at Amsterdam Design System} */ export declare const Logo: ForwardRefExoticComponent<Omit<LogoProps, "ref"> & RefAttributes<SVGSVGElement>>;