UNPKG

and-design-components-library

Version:

Library of reusable React components based on AND Digital design system.

13 lines (12 loc) 308 B
import { SVGProps } from 'react'; export interface SpinnerProps extends SVGProps<SVGSVGElement> { /** * Accepts a subset of AND Digital brand colors. * @default 'charcoal' */ color?: string; /** * Width and height of the spinner in px */ size?: number; }