UNPKG

@cerberus-design/styled-system

Version:

Cerberus Design System Panda-CSS styled-system.

14 lines (10 loc) 518 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { AnimateInProperties } from '../patterns/animate-in'; import type { HTMLCerberusProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface AnimateInProps extends AnimateInProperties, DistributiveOmit<HTMLCerberusProps<'div'>, keyof AnimateInProperties | 'overflow'> {} /** * A container that fades in the content */ export declare const AnimateIn: FunctionComponent<AnimateInProps>