@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
25 lines • 769 B
TypeScript
import { InternalBaseComponentProps } from '../internal/hooks/use-base-component';
import { ExpandableSectionProps, InternalVariant } from './interfaces';
export type InternalExpandableSectionProps = Omit<ExpandableSectionProps, 'variant'> & InternalBaseComponentProps & {
variant?: InternalVariant;
__injectAnalyticsComponentMetadata?: boolean;
};
export default function InternalExpandableSection({
expanded: controlledExpanded,
defaultExpanded,
onChange,
variant,
children,
header,
headerText,
headerCounter,
headerDescription,
headerInfo,
headerActions,
headingTagOverride,
disableContentPaddings,
headerAriaLabel,
__internalRootRef,
__injectAnalyticsComponentMetadata,
...props
}: InternalExpandableSectionProps): JSX.Element;