import React, { FC } from "react"; import clsx from "clsx"; import { PrefixLabel } from "./PrefixLabel"; import { NumberInput, NumberInputProps } from "@components/Input"; export const PlaceOrderInput: FC = props => { const { dark, className, placeholder, endAdornment, name, ...reset } = props; return ( } endAdornment={endAdornment} name={name} /> ); };