UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

17 lines (16 loc) 759 B
import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { JSXBase, VNode } from '../../stencil-public-runtime'; import { type InternMsgPropType } from '../../schema'; type InputAdornmentType = VNode | VNode[] | null; export type InputContainerProps = JSXBase.HTMLAttributes & { startAdornment?: InputAdornmentType; endAdornment?: InputAdornmentType; disabled?: boolean; msg?: InternMsgPropType; touched?: boolean; containerProps?: JSXBase.HTMLAttributes<HTMLDivElement>; startAdornmentProps?: JSXBase.HTMLAttributes<HTMLDivElement>; endAdornmentProps?: JSXBase.HTMLAttributes<HTMLDivElement>; }; declare const KolInputContainerFc: FC<InputContainerProps>; export default KolInputContainerFc;