Represents a configuration needed for the img for the button

interface IButtonImageConfig {
    alt: string;
    height?: number;
    src: string;
    width?: number;
}

Properties

Properties

alt: string

The alt text for the image of the avatar

height?: number

The height of the image. Needed for the Cumulative Layout Shift (CLS)

src: string

The source of the image

width?: number

The width of the image. Needed for the Cumulative Layout Shift (CLS)

Generated using TypeDoc