@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
21 lines (18 loc) • 859 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { NoticeProps, NoticeListProps } from './types.js';
import '@accelint/bus';
import '@accelint/core';
import 'react-aria-components';
import '../button/types.js';
import 'tailwind-variants';
import '../../lib/types.js';
import 'react';
import '../button/styles.js';
import 'tailwind-merge';
import './events.js';
declare function Notice({ id, classNames, color, message, primary, secondary, hideIcon, showClose, shouldCloseOnAction, size, onPrimaryAction, onSecondaryAction, onClose, }: NoticeProps): react_jsx_runtime.JSX.Element;
declare namespace Notice {
var List: typeof NoticeList;
}
declare function NoticeList({ id, classNames, defaultColor, defaultTimeout, hideClearAll, limit, global, placement, size, ...rest }: NoticeListProps): react_jsx_runtime.JSX.Element;
export { Notice };