#Input Adornment
import Input from "@poodle/ui/InputAdornment";
InputAdornment
is a component use together with Input
component.
Please check Input
document to see the example usage.
#Theming
Please check theming component document here.
export type InputAdornmentStyleKeys = "root"export interface InputAdornmentThemeConfigextends StandardThemeConfig<InputAdornmentStyleKeys, InputAdornmentProps> {}
#Props
#Local Props
Name | Type | Description |
---|---|---|
adornmentPosition | "start" \| "end" | Change position styles when the adornment is the first item at the begin or end. |
children | React.ReactNode | |
isIcon | boolean | Change to icon styles when the adornment content is a icon. |
#Full Props
export interface InputAdornmentPropsextends BoxProps,StandardComponentProps,LocalInputAdornmentProps {}