import React from 'react'; import { Header, Icon, Popup, Segment } from 'semantic-ui-react'; import './SegmentParts.less'; export const SegmentPart = ({ name, icon = null, children, helpText }) => (
{icon && } {name}
{' '} What is this? } /> {children}
);