chore(Progress): define ProgressColor type

This commit is contained in:
Benjamin Canac
2024-02-15 11:58:10 +01:00
parent b11c773f32
commit db42d9cab7
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,6 @@
import { progress } from '../ui.config'
import colors from '#ui-colors'
export type ProgressSize = keyof typeof progress.progress.size
export type ProgressAnimation = keyof typeof progress.animation
export type ProgressColor = typeof colors[number]