geoiq-frontend-ui-kit
Version:
This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.
14 lines (13 loc) • 486 B
TypeScript
import { VariantProps } from 'class-variance-authority';
import { AlertVariants } from './alert.styles';
import { default as React } from 'react';
export interface AlertProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof AlertVariants> {
id?: string;
description?: React.ReactNode;
title?: string;
showButton?: boolean;
buttonLabel?: string;
onButtonClick?: () => void;
shortContent?: boolean;
}
//# sourceMappingURL=alert.types.d.ts.map