Files
wallet/styled-system/patterns/square.d.ts
2023-08-16 08:23:27 +00:00

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;