open-consul/ui/packages/consul-ui/app/components/collapsible-notices
John Cowen f461906883
ui: Fixup prettier for scss files and run (#10296)
* ui: Ensure prettier makes all our scss files pretty

* Run prettier on all our scss files
2021-05-27 13:23:54 +01:00
..
README.mdx
index.hbs
index.js
index.scss ui: Fixup prettier for scss files and run (#10296) 2021-05-27 13:23:54 +01:00

README.mdx

# CollapsibleNotices

Used as a wrapper to collapse the details of `<Notices/>`.

```hbs preview-template
<CollapsibleNotices>
  <Notice
    @type="error"
    role="alert"
  as |notice|>
    <notice.Header>
      <h3>Header</h3>
    </notice.Header>
    <notice.Body>
      <p>
        Body
      </p>
    </notice.Body>
  </Notice>
  <Notice
    @type="info"
  as |notice|>
    <notice.Header>
      <h3>Header</h3>
    </notice.Header>
    <notice.Body>
      <p>
        Body
      </p>
    </notice.Body>
    <notice.Footer>
      <p>
        Footer
      </p>
    </notice.Footer>
  </Notice>
  <Notice
    @type="warning"
  as |notice|>
    <notice.Header>
      <h3>Header</h3>
    </notice.Header>
    <notice.Body>
      <p>
        Body
      </p>
    </notice.Body>
    <notice.Footer>
      <p>
        Footer
      </p>
    </notice.Footer>
  </Notice>
</CollapsibleNotices>

```

## Arguments

No arguments required. Wrap this component around the needed notices.

## See

- [Template Source Code](./index.hbs)

---