import React from 'react'; import type { ICollapsibleSectionProps } from '../../../presentation'; import { CollapsibleSection } from '../../../presentation'; interface IArtifactCollapsibleSectionProps extends ICollapsibleSectionProps { isUpdating?: boolean; } export const ArtifactCollapsibleSection: React.FC = ({ heading, isUpdating, ...props }) => { return ( (
{chevron} {heading} {isUpdating && }
)} {...props} /> ); };