import React from 'react';
import {storiesOf} from '@storybook/react';
import {boolean, text} from '@storybook/addon-knobs';

import Hint from '../../Components/Hint/src';

export default storiesOf('Components | Hint', module)
  .add('default view', () => (
    <Hint
      withIcon={boolean('With icon', true)}
      isVisible={boolean('Visible', true)}
      message={text('Message', 'Explore a unique advertising channel. Instantly deliver your brand’s message or offer directly to a user’s device, even when he is not browsing.')}
    />
  ));
