Form Components

Input

Base input component with support for various types.

TypeScript
1import { Input } from "@openledger/accounting-react";
2
3function SearchField() {
4 return (
5 <Input
6 type="search"
7 placeholder="Search transactions..."
8 hasError={false}
9 enableStepper={true}
10 />
11 );
12}
PropTypeDescription
typestringInput type (text, search, password, etc.)
hasErrorbooleanError state
enableStepperbooleanShow number steppers
inputClassNamestringInput element CSS class

DatePicker

Select dates for reports and filters.

TypeScript
1import { DatePicker } from "@openledger/accounting-react";
2
3function DateSelector() {
4 return (
5 <DatePicker
6 boxSx={{ marginRight: 2 }}
7 />
8 );
9}
PropTypeDescription
boxSxSxProps<Theme>Optional. MUI styling for the Box container