mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
42e198bf75
* Gruvbox theme * Added Storybook for all components that don't fail in browser
38 lines
865 B
JavaScript
38 lines
865 B
JavaScript
import React from 'react';
|
|
import '../../../.storybook/index.less';
|
|
import Notice from './notice';
|
|
|
|
export default { title: 'Notice' };
|
|
|
|
export const _default = () => (
|
|
<Notice>This is a notice. It is a bright block of text, meant to stand out from the rest!</Notice>
|
|
);
|
|
|
|
export const colors = () => (
|
|
<div>
|
|
<Notice color="surprise">
|
|
This is a <strong>surprise</strong> notice
|
|
</Notice>
|
|
|
|
<Notice color="info">
|
|
This is a <strong>info</strong> notice
|
|
</Notice>
|
|
|
|
<Notice color="warning">
|
|
This is a <strong>warning</strong> notice
|
|
</Notice>
|
|
|
|
<Notice color="error">
|
|
This is a <strong>error</strong> notice
|
|
</Notice>
|
|
|
|
<Notice color="subtle">
|
|
This is a <strong>subtle</strong> notice
|
|
</Notice>
|
|
|
|
<Notice color="success">
|
|
This is a <strong>success</strong> notice
|
|
</Notice>
|
|
</div>
|
|
);
|