UNPKG

ds-smart-ui

Version:

Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.

17 lines (16 loc) 547 B
import { ReactElement } from 'react'; type LabelPosition = "left" | "right" | "bottom-left" | "bottom-center" | "bottom-right"; type AvatarWithLabelProps = React.HTMLAttributes<HTMLDivElement> & { name?: string; identity?: string; icon?: ReactElement; color?: string; bgColor?: string; sizeProp?: "sm" | "md" | "lg" | "xl" | number; src?: string; alt?: string; labelPositionProp?: LabelPosition; id?: string; }; declare const AvatarWithLabel: React.FC<AvatarWithLabelProps>; export default AvatarWithLabel;