/** * External dependencies */ import { Badge } from '@woocommerce/components'; import { TaskListSection, TaskType } from '@woocommerce/data'; import { Icon, check } from '@wordpress/icons'; import { Text } from '@woocommerce/experimental'; /** * Internal dependencies */ import SectionHeader from './headers/section-header'; type SectionPanelTitleProps = { section: TaskListSection; active: boolean; tasks: TaskType[]; }; export const SectionPanelTitle: React.FC< SectionPanelTitleProps > = ( { section, active, tasks, } ) => { if ( active ) { return (