@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
16 lines (15 loc) • 473 B
TypeScript
import { type SvgIconProps } from '@mui/material/SvgIcon';
import React from 'react';
export declare enum LogoTheme {
Primary = "primary",
White = "white",
WhiteWithRay = "whiteWithRay",
PrimaryWithText = "primaryWithText",
BlackWithTextAndRay = "blackWithTextAndRay"
}
type UDLogoProps = SvgIconProps & {
theme?: LogoTheme;
inverse?: boolean;
};
declare const Logo: ({ theme, ...props }: UDLogoProps) => React.JSX.Element;
export default Logo;