import React from 'react';
import '../../../.storybook/index.less';
import Notice from './notice';
export default { title: 'Notice' };
export const _default = () => (
This is a notice. It is a bright block of text, meant to stand out from the rest!
);
export const colors = () => (
This is a surprise notice
This is a info notice
This is a warning notice
This is a error notice
This is a subtle notice
This is a success notice
);