UNPKG

@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) 486 B
import type { DesignTokenValues, OutputVariantKey, RadiusValue, RecursiveDesignToken } from './types/designToken'; type RadiusSize = 'xs' | 'small' | 'medium' | 'large' | 'xl' | 'xxl' | 'xxxl'; export type Radii<Output extends OutputVariantKey = unknown, Platform = unknown> = DesignTokenValues<RadiusSize, RadiusValue<Platform, Output>, Output, Platform> & RecursiveDesignToken<RadiusValue<Platform, Output>, Output, Platform>; export declare const radii: Radii<'default'>; export {};