import React, {FC} from "react"; import classNames from "classnames"; import {ColorOptionWithCustomTint, request} from "./Color"; export type VerticalOrConnectorProps = ColorOptionWithCustomTint & { label: string, } export const VerticalOrConnector: FC = ({color, label}) => { return
{label}
}