UNPKG

gestalt

Version:

A set of React UI components which enforce Pinterest's design language

6 lines (5 loc) 305 B
import { Style } from './style'; export type Rounding = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 'circle' | 'pill'; export declare const getRoundingStyle: (rounding: Rounding) => Style; declare const getRoundingClassName: (rounding: Rounding) => string | null | undefined; export default getRoundingClassName;