UNPKG

@awsui/components-react

Version:

AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A

35 lines (34 loc) 1.3 kB
import { IconProps } from '../../../icon'; interface LabelProps { label?: string; prefix?: string; highlightText?: string; triggerVariant: boolean; } export declare const Label: ({ label, prefix, highlightText, triggerVariant }: LabelProps) => JSX.Element; interface LabelTagProps { labelTag?: string; highlightText?: string; triggerVariant: boolean; } export declare const LabelTag: ({ labelTag, highlightText, triggerVariant }: LabelTagProps) => JSX.Element | null; interface DescriptionProps { description?: string; highlightText?: string; triggerVariant: boolean; } export declare const Description: ({ description, highlightText, triggerVariant }: DescriptionProps) => JSX.Element | null; interface TagsProps { tags?: ReadonlyArray<string>; highlightText?: string; triggerVariant: boolean; } export declare const Tags: ({ tags, highlightText, triggerVariant }: TagsProps) => JSX.Element | null; interface FilteringTagProps { filteringTags?: ReadonlyArray<string>; highlightText?: string; triggerVariant: boolean; } export declare const FilteringTags: ({ filteringTags, highlightText, triggerVariant }: FilteringTagProps) => JSX.Element | null; export declare const OptionIcon: (props: IconProps) => JSX.Element | null; export {};