@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
13 lines (12 loc) • 428 B
TypeScript
import { ButtonProps } from './index';
export interface ButtonIconProps {
loading?: boolean;
iconName?: ButtonProps['iconName'];
iconAlign?: ButtonProps['iconAlign'];
iconUrl?: string;
iconAlt?: string;
variant?: string;
iconClass?: string;
}
export declare function LeftIcon(props: ButtonIconProps): JSX.Element | null;
export declare function RightIcon(props: ButtonIconProps): JSX.Element | null;