#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 InputAdornmentThemeConfig
extends StandardThemeConfig<InputAdornmentStyleKeys, InputAdornmentProps> {}

#Props

#Local Props

NameTypeDescription
adornmentPosition"start" \| "end"Change position styles when the adornment is the first item
at the begin or end.
childrenReact.ReactNode
isIconbooleanChange to icon styles when the adornment content is a icon.

#Full Props

export interface InputAdornmentProps
extends BoxProps,
StandardComponentProps,
LocalInputAdornmentProps {}