@useloops/design-system
Version:
The official React based Loops design system
9 lines (6 loc) • 385 B
TypeScript
import * as react from 'react';
import { Theme } from '@mui/material';
import { CommentCardProps } from './types.js';
declare const getAuthorAvatarColor: (theme: Theme, authorId: string | undefined) => string;
declare const CommentCard: react.ForwardRefExoticComponent<CommentCardProps & react.RefAttributes<HTMLDivElement>>;
export { CommentCard as default, getAuthorAvatarColor };