feat(Divider): handle size prop (#1307)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
adjabaev
2024-02-07 13:48:11 +01:00
committed by GitHub
parent a506cbbcb0
commit cbeede66bb
5 changed files with 35 additions and 11 deletions

3
src/runtime/types/divider.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
import { divider } from '#ui/ui.config'
export type DividerSize = keyof typeof divider.border.size.horizontal | keyof typeof divider.border.size.vertical

View File

@@ -7,6 +7,7 @@ export * from './button'
export * from './chip'
export * from './clipboard'
export * from './command-palette'
export * from './divider'
export * from './dropdown'
export * from './form-group'
export * from './form'