@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
17 lines • 575 B
TypeScript
import * as React from 'react';
import { IconProps } from '../icon/interfaces';
import { ButtonProps } from './interfaces';
export interface ButtonIconProps {
loading?: boolean;
iconName?: ButtonProps['iconName'];
iconAlign?: ButtonProps['iconAlign'];
iconUrl?: string;
iconSvg?: React.ReactNode;
iconAlt?: string;
iconSize?: IconProps.Size;
variant?: string;
iconClass?: string;
badge?: boolean;
}
export declare function LeftIcon(props: ButtonIconProps): JSX.Element | null;
export declare function RightIcon(props: ButtonIconProps): JSX.Element | null;