feat(Meter): new component (#827)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Italo
2023-10-27 15:40:39 -03:00
committed by GitHub
parent 5296cf2319
commit abbcc37fbb
10 changed files with 750 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ export * from './command-palette'
export * from './dropdown'
export * from './form'
export * from './link'
export * from './meter'
export * from './notification'
export * from './popper'
export * from './progress'

5
src/runtime/types/meter.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
import { meter } from '../ui.config'
import colors from '#ui-colors'
export type MeterSize = keyof typeof meter.meter.size
export type MeterColor = keyof typeof meter.color | typeof colors[number]