@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
11 lines (10 loc) • 342 B
TypeScript
import React from 'react';
export type IconPlateVariant = 'default' | 'info' | 'error' | 'success';
type Props = {
children: JSX.Element;
size?: number;
variant?: IconPlateVariant;
className?: string;
};
declare const IconPlate: ({ children, variant, size, className, }: Props) => React.JSX.Element;
export default IconPlate;