9 lines
252 B
JavaScript
9 lines
252 B
JavaScript
import tw, { styled } from "twin.macro";
|
|
import "styled-components/macro";
|
|
|
|
import Input from "@shared/nej-react-components/Parts/Input";
|
|
|
|
export default function NumberField(props) {
|
|
return <Input step="any" lang="cs" type="number" {...props} />;
|
|
}
|