fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
13 lines (12 loc) • 694 B
TypeScript
import React from "react";
import { CommonAndHTMLProps } from '../../Element/constants';
export interface NotificationsWrapperCustomProps {
position?: "left" | "right";
anchor?: "top" | "bottom";
order?: "new-on-top" | "new-on-bottom";
label?: string;
}
export type NotificationsWrapperElementType = HTMLDivElement;
export type NotificationsWrapperProps = CommonAndHTMLProps<NotificationsWrapperElementType> & NotificationsWrapperCustomProps;
export declare const NotificationsWrapper: React.ForwardRefExoticComponent<CommonAndHTMLProps<HTMLDivElement> & NotificationsWrapperCustomProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=NotificationsWrapper.d.ts.map