export interface IProfileProps {
    image?: string;
    name?: string;
    status?: {
        text: string;
        color: string;
    };
    tag?: string;
    tags?: string;
}
