UNPKG

@atlaskit/flag

Version:

A flag is used for confirmations, alerts, and acknowledgments that require minimal user interaction, often displayed using a flag group.

8 lines (7 loc) 218 B
type ExpanderProps = { isExpanded: boolean; testId?: string; children: React.ReactNode; }; declare const Expander: ({ children, isExpanded, testId }: ExpanderProps) => JSX.Element; export default Expander;