@up-group-ui/react-controls
Version:
Up shared react controls
15 lines (14 loc) • 460 B
TypeScript
import React from 'react';
import { IntentType } from '../../../Common/theming/types';
import { IconName } from '../../../Common/theming/icons';
export interface UpLogoAlerteProps {
icon: IconName;
title?: string;
alerteNumber?: number;
intent: IntentType;
}
export default class UpLogoAlerte extends React.Component<UpLogoAlerteProps> {
static defaultProps: UpLogoAlerteProps;
constructor(p: any, c: any);
render(): JSX.Element;
}