@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
18 lines (17 loc) • 621 B
TypeScript
import { AlertColor } from '@mui/material/Alert';
import { Theme } from '@mui/material/styles';
import { AlertSize } from 'components/Alert/Alert';
export declare const useStyles: (params: {
severity: AlertColor;
variant: 'standard' | 'filled' | 'outlined';
size: AlertSize;
hasAction: boolean;
}, muiStyleOverridesParams?: {
props: Record<string, unknown>;
ownerState?: Record<string, unknown>;
}) => {
classes: Record<"action" | "body" | "root" | "icon" | "message" | "closeAction" | "heading", string>;
theme: Theme;
css: import("tss-react").Css;
cx: import("tss-react").Cx;
};