---
<p>
- {capitalizedNoun} utilities that apply to all breakpoints, from <code>xs</code> to <code>2xl</code>, have no breakpoint
- prefix in them. This is because those classes are applied from <code>min-width: 0</code> and up, and thus are not
- bound by a media query. The remaining breakpoints, however, do include a breakpoint prefix.
+ {capitalizedNoun} utilities that apply to all breakpoints, from <code>xs</code> to <code>2xl</code>, have no
+ breakpoint prefix in them. This is because those classes are applied from <code>min-width: 0</code> and up, and thus are
+ not bound by a media query. The remaining breakpoints, however, do include a breakpoint prefix.
</p>
<p>
The classes are named using the format <code>{format}</code> for <code>xs</code> and{' '}
- <code>{`{breakpoint}:${format}`}</code> for <code>sm</code>, <code>md</code>, <code>lg</code>, <code>xl</code>, and{' '}
+ <code>{`{breakpoint}:${format}`}</code> for <code>sm</code>, <code>md</code>, <code>lg</code>, <code>xl</code>, and{
+ ' '
+ }
<code>2xl</code>.
</p>
{breakpoints.map((breakpoint) => (
<li>
{/* prettier-ignore */}
- <code>.{breakpoint.abbr}{className}-0</code> through <code>.{breakpoint.abbr}{className}-9</code>
+ <code>.{breakpoint.abbr}{className}-0</code> through{' '}
+ <code>
+ .{breakpoint.abbr}
+ {className}-9
+ </code>
{includeAuto && (
- <Fragment> and <code>.{breakpoint.abbr}{className}-auto</code></Fragment>
+ <Fragment>
+ {' '}
+ and{' '}
+ <code>
+ .{breakpoint.abbr}
+ {className}-auto
+ </code>
+ </Fragment>
)}
</li>
))}