import React from "react"; import { FormattedMessage } from "react-intl"; import { Weight } from "../Weight"; export interface WeightRangeProps { from?: Weight; to?: Weight; } const WeightRange: React.FC = ({ from, to }) => from && to ? ( ) : from && !to ? ( ) : !from && to ? ( ) : ( - ); WeightRange.displayName = "WeightRange"; export default WeightRange;