import React from 'react'; import { Card } from '@douyinfe/semi-ui'; import './SegmentParts.less'; export const SegmentPart = ({ name, Icon = null, children, helpText }) => { const { Meta } = Card; return ( } /> } > {children} ); };