2.0.0 • Published 3 years ago
@eisgs/alert v2.0.0
Компонент Alert
title и description Управляют контентом.
button Компонент кнопки.
import { Button } from "@eisgs/button";
<Alert
title="Alert"
description="Описание Alert"
button={<Button>Кнопка</Button>}
/>Кастомные стили
import { Button } from "@eisgs/button";
const styles = {width: 500};
<Alert
title="Alert"
description="Описание Alert"
button={<Button>Кнопка</Button>}
styles={styles}
/>