UNPKG

cornell-glue-ui

Version:

Glue UI is Cornell WebDev's centralized UI component library. It implements our design system and serves as a single source of truth for React components used within our projects.

9 lines (8 loc) 288 B
import React from 'react'; interface IAvatarProps extends React.HTMLAttributes<HTMLDivElement> { name: string; underline?: string; avatarColor?: string; } export declare const Avatar: ({ name, underline, ...rest }: IAvatarProps) => JSX.Element; export default Avatar;