smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
15 lines (14 loc) • 428 B
TypeScript
import React from "react";
import { SizeProps } from "../props/size-props";
import { JSXElementProps, JSXChildren } from "../props";
export interface Props extends SizeProps {
elementProps?: JSXElementProps;
children: JSXChildren;
type?: string;
fill?: boolean;
icon?: JSX.Element;
iconType?: string;
iconPosition?: string;
}
declare const Alert: React.FC<Props>;
export default Alert;