8889841cwoocommerce/packages/woocommerce-blocks/assets/js/blocks/checkout/form-step/form-step-heading.tsx000064400000001226150534631440040307 0ustar00home/clixcotz/gj.clix.co.tz/wp-content/plugins/** * External dependencies */ import { Title } from '@woocommerce/blocks-components'; /** * Step Heading Component */ const FormStepHeading = ( { children, stepHeadingContent, }: { children: JSX.Element; stepHeadingContent?: JSX.Element; } ): JSX.Element => (
{ !! stepHeadingContent && ( { stepHeadingContent } ) }
); export default FormStepHeading;