15 lines
441 B
TypeScript
15 lines
441 B
TypeScript
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 CircleProperties = {
|
|
size?: PropertyValue<'width'>
|
|
}
|
|
|
|
|
|
type CircleOptions = CircleProperties & Omit<SystemStyleObject, keyof CircleProperties >
|
|
|
|
|
|
export declare function circle(options?: CircleOptions): string
|