12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
export type TailwindSize = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96
|
|
|
|
/**
|
|
* Common HTML attributes that should be supported by all components
|
|
*/
|
|
export type CommonHTMLProps = {
|
|
class?: string
|
|
id?: string
|
|
style?: Record<string, unknown>
|
|
ref?: any
|
|
}
|