mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-01-12 09:34:37 +08:00
22 lines
600 B
TypeScript
22 lines
600 B
TypeScript
/* eslint-disable */
|
|
import type { SystemStyleObject, ConditionalValue } from '../types'
|
|
import type { PropertyValue } from '../types/prop-type'
|
|
import type { Properties } from '../types/csstype'
|
|
import type { Tokens } from '../tokens'
|
|
|
|
export type VstackProperties = {
|
|
justify?: PropertyValue<'justifyContent'>
|
|
gap?: PropertyValue<'gap'>
|
|
}
|
|
|
|
|
|
type VstackOptions = VstackProperties & Omit<SystemStyleObject, keyof VstackProperties >
|
|
|
|
interface VstackPatternFn {
|
|
(options?: VstackOptions): string
|
|
raw: (options: VstackOptions) => VstackOptions
|
|
}
|
|
|
|
|
|
export declare const vstack: VstackPatternFn;
|