/** * External dependencies */ import type { ReactElement } from 'react'; import type { PackageRateOption } from '@woocommerce/type-defs/shipping'; const OptionLayout = ( { label, secondaryLabel, description, secondaryDescription, id, }: Partial< PackageRateOption > ): ReactElement => { return (
{ label && ( { label } ) } { secondaryLabel && ( { secondaryLabel } ) }
{ description && ( { description } ) } { secondaryDescription && ( { secondaryDescription } ) }
); }; export default OptionLayout;