UNPKG

@churchapps/apphelper

Version:

Library of helper functions for React and NextJS ChurchApps

12 lines 400 B
import React from "react"; import { SxProps } from "@mui/material"; import { PersonInterface } from "@churchapps/helpers"; interface Props { person: PersonInterface; size?: "small" | "medium" | "large" | "xlarge" | "xxlarge" | "responsive"; sx?: SxProps; onClick?: () => void; } export declare const PersonAvatar: React.FC<Props>; export {}; //# sourceMappingURL=PersonAvatar.d.ts.map