UNPKG

@keen.io/ui-core

Version:

Keen visual components library

10 lines (9 loc) 244 B
import React, { FC } from 'react'; import { Variant } from './types'; declare type Props = { children: React.ReactNode; type: Variant; contentWidth?: boolean; }; export declare const Alert: FC<Props>; export default Alert;