UNPKG

@saleor/macaw-ui

Version:

Saleor's UI component library

11 lines (9 loc) 283 B
import { PropsWithBox } from '../../Box'; import { ReactNode } from 'react'; export type AccordionContentProps = PropsWithBox<{ children: ReactNode; }>; export declare const Content: { ({ children, ...rest }: AccordionContentProps): JSX.Element; displayName: string; };