@useloops/design-system
Version:
The official React based Loops design system
11 lines (8 loc) • 367 B
TypeScript
import { FunctionComponent } from 'react';
interface DemographicSelectionSectionProps {
demographicOptionLabel: string;
demographicSelectionLabels: string[];
}
declare const DemographicSelectionSection: FunctionComponent<DemographicSelectionSectionProps>;
export { DemographicSelectionSection as default };
export type { DemographicSelectionSectionProps };