mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-01-12 17:53:19 +08:00
21 lines
560 B
TypeScript
21 lines
560 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 SquareProperties = {
|
|
size?: PropertyValue<'width'>
|
|
}
|
|
|
|
|
|
type SquareOptions = SquareProperties & Omit<SystemStyleObject, keyof SquareProperties >
|
|
|
|
interface SquarePatternFn {
|
|
(options?: SquareOptions): string
|
|
raw: (options: SquareOptions) => SquareOptions
|
|
}
|
|
|
|
|
|
export declare const square: SquarePatternFn;
|