1
0
Fork 0
freesewing/sites/dev/docs/reference/packages/react/components/mini
joostdecock 22a89f12d3 feat(dev): Added react docs for Pattern + refactor
This adds support for not only documenating components, but also
constants and functions that may be exported next to components.
2025-05-25 16:29:57 +02:00
..
_examples.js [react] feat: Added docs for components/Mini 2025-05-24 18:03:59 +02:00
readme.mdx feat(dev): Added react docs for Pattern + refactor 2025-05-25 16:29:57 +02:00

---
title: Mini
---

import { DocusaurusDoc } from '@freesewing/react/components/Docusaurus'
import { ComponentDocs } from '@site/src/components/component-docs.js'
import * as jsdoc from '@site/prebuild/jsdoc/components.mini.mjs'
import { MiniNoteExample, MiniTipExample, MiniWarningExample } from './_examples.js'

<DocusaurusDoc>

- [Components](#components)

## Components

The **Mini** component family provides the following components:

- [MiniNote](#mininote)
- [MiniTip](#minitip)
- [MiniWarning](#miniwarning)

:::tip
These components are typically used when a
[Popout](/reference/packages/react/components/popout/) would take up too much
space.
:::

### MiniNote

<ComponentDocs docs={jsdoc.jsdocMiniNote} example={MiniNoteExample} />

### MiniTip

<ComponentDocs docs={jsdoc.jsdocMiniTip} example={MiniTipExample} />

### MiniWarning

<ComponentDocs docs={jsdoc.jsdocMiniWarning} example={MiniWarningExample} />

</DocusaurusDoc>