UNPKG

@pandacss/studio

Version:

The automated token documentation for Panda CSS

10 lines (7 loc) 421 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { FloatProperties } from '../patterns/float'; import type { HTMLPandaProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface FloatProps extends FloatProperties, DistributiveOmit<HTMLPandaProps<'div'>, keyof FloatProperties > {} export declare const Float: FunctionComponent<FloatProps>