UNPKG

@patreon/studio

Version:

Patreon Studio Design System

12 lines (11 loc) 399 B
import type { HexString } from '../../types/color-system'; import type { BaseProps, StylableProps } from '../../types/component'; import type { ColorToken } from '../../types/tokens'; export interface LogoProps extends BaseProps, StylableProps { /** Color of logo */ color?: HexString | ColorToken; /** Height of logo */ height: string; /** Width of logo */ width: string; }