@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
12 lines (11 loc) • 1.1 kB
TypeScript
import { AvatarContentStylesType } from './types/avatarTheme';
import { AvatarBackgroundColor } from './types/content';
type AvatarPropStylesType = {
styles?: AvatarContentStylesType;
image?: string;
backgroundColor: AvatarBackgroundColor;
};
export declare const AvatarStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, AvatarPropStylesType>> & string;
export declare const AvatarLinkStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, AvatarPropStylesType>> & string;
export declare const AvatarDotStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
export {};