and-design-components-library
Version:
Library of reusable React components based on AND Digital design system.
10 lines (9 loc) • 350 B
TypeScript
import { SelectHTMLAttributes } from 'react';
import { HeightProps, WidthProps } from 'styled-system';
export interface DropdownProps extends SelectHTMLAttributes<HTMLSelectElement>, HeightProps, WidthProps {
/**
* Accepts a subset of AND Digital brand colors.
* @default 'colors.white'
*/
backgroundColor?: string;
}