@aws-amplify/ui
Version:
`@aws-amplify/ui` contains low-level logic & styles for stand-alone usage or re-use in framework-specific implementations.
6 lines (5 loc) • 473 B
TypeScript
import type { DesignTokenValues, OutlineWidthValue, OutputVariantKey, RecursiveDesignToken } from './types/designToken';
type OutlineWidthSize = 'small' | 'medium' | 'large';
export type OutlineWidths<Output extends OutputVariantKey = unknown, Platform = unknown> = DesignTokenValues<OutlineWidthSize, OutlineWidthValue, Output, Platform> & RecursiveDesignToken<OutlineWidthValue, Output, Platform>;
export declare const outlineWidths: OutlineWidths<'default'>;
export {};