chore(Toggle): export ToggleColor type

This commit is contained in:
Benjamin Canac
2024-02-15 11:56:21 +01:00
parent a55a08a91e
commit c34df13e65
2 changed files with 4 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
import { toggle } from '../ui.config'
import type { ExtractDeepKey } from '.'
import type { AppConfig } from 'nuxt/schema'
import colors from '#ui-colors'
export type ToggleSize = keyof typeof toggle.size | ExtractDeepKey<AppConfig, ['ui', 'toggle', 'size']>
export type ToggleColor = typeof colors[number]