@eisgs/alert
v2.0.0
Published
`title` и `description` Управляют контентом. `button` Компонент кнопки.
Readme
Компонент 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}
/>