import classNames from "classnames" import { HTMLProps, memo } from "react" export type FormFromToProps = HTMLProps & { preview: boolean, } export const FormFromTo = memo((props: FormFromToProps) => { return (
) }) export type FormFromToPartProps = HTMLProps & { part: "icon" | "start" | "connector" | "end" } export const FormFromToPart = memo((props: FormFromToPartProps) => { return (
) })