next13-starter
Version:
Start a Next13 Zustand TypeScript project in few second!
23 lines (19 loc) • 391 B
text/typescript
export type TJustifyContent =
| 'flex-start'
| 'flex-end'
| 'center'
| 'space-between'
| 'space-around'
| 'space-evenly';
export type TAlignItems =
| 'stretch'
| 'flex-start'
| 'flex-end'
| 'center'
| 'baseline';
export type TFlexDirection =
| 'row'
| 'column'
| 'row-reverse'
| 'column-reverse';
export type TIconName = 'logoSymbol' | 'signin' | 'signout';