···1313 <h1 className="font-bold text-6xl text-fd-muted-foreground">404</h1>
1414 <h2 className="font-semibold text-2xl">Page Not Found</h2>
1515 <p className="max-w-md text-fd-muted-foreground">
1616- The page you are looking for might have been removed, had its name
1717- changed, or is temporarily unavailable.
1616+ The page you are looking for might have been removed, had its name changed, or is
1717+ temporarily unavailable.
1818 </p>
1919 <Link
2020 className="mt-4 rounded-lg bg-fd-primary px-4 py-2 font-medium text-fd-primary-foreground text-sm transition-opacity hover:opacity-90"
···11export type { EmojiProps } from './text/composed/emoji.js';
22export { Emoji } from './text/composed/emoji.js';
33-export type {
44- HeadingLevel,
55- HeadingProps,
66- HeadingTag,
77-} from './text/composed/heading.js';
33+export type { HeadingLevel, HeadingProps, HeadingTag } from './text/composed/heading.js';
84export { Heading } from './text/composed/heading.js';
95export type { HeadingLevelsRenderProps } from './text/composed/heading-context.js';
106export {
···6262 */
6363export const Units = meta.story({
6464 args: baseArgs,
6565- render: (props) => (
6666- <Numeral {...props} unit="kilometer-per-hour" value={98} />
6767- ),
6565+ render: (props) => <Numeral {...props} unit="kilometer-per-hour" value={98} />,
6866});
69677068/**
···103101 render: (props) => (
104102 <div style={stackStyle}>
105103 <Heading level={2}>
106106- Acme Corporation shares hit{' '}
107107- <Numeral {...props} abbreviate value={1_456_789} /> today
104104+ Acme Corporation shares hit <Numeral {...props} abbreviate value={1_456_789} /> today
108105 </Heading>
109106 <Text>
110110- We asked investors which private company's stock they would most
111111- like to own. More than{' '}
112112- <Numeral {...props} format="percent" value={0.80123} /> of respondents
113113- picked Acme Corp.
107107+ We asked investors which private company's stock they would most like to own. More than{' '}
108108+ <Numeral {...props} format="percent" value={0.80123} /> of respondents picked Acme Corp.
114109 </Text>
115110 <Text>
116116- Hooli, Acme's parent component, went public earlier in the year.
117117- The median commitment was{' '}
118118- <Numeral {...props} currency="AUD" precision={0} value={1_000} /> though
119119- the average was significantly higher.
111111+ Hooli, Acme's parent component, went public earlier in the year. The median commitment
112112+ was <Numeral {...props} currency="AUD" precision={0} value={1_000} /> though the average was
113113+ significantly higher.
120114 </Text>
121115 </div>
122116 ),
···130124 render: () => (
131125 <div style={stackStyle}>
132126 <Heading level={2}>
133133- Acme Corporation shares hit <Numeral value={1_456_789} abbreviate />{' '}
134134- today
127127+ Acme Corporation shares hit <Numeral value={1_456_789} abbreviate /> today
135128 </Heading>
136129 <Text>
137137- We asked investors which private company’s stock they would most like to
138138- own. More than <Numeral value={0.80123} format="percent" /> of
139139- respondents picked Acme Corp.
130130+ We asked investors which private company’s stock they would most like to own. More than{' '}
131131+ <Numeral value={0.80123} format="percent" /> of respondents picked Acme Corp.
140132 </Text>
141133 <Text>
142142- Hooli, Acme’s parent component, went public earlier in the year. The
143143- median commitment was{' '}
144144- <Numeral value={1_000} currency="AUD" precision={0} /> though the
145145- average was significantly higher.
134134+ Hooli, Acme’s parent component, went public earlier in the year. The median commitment was{' '}
135135+ <Numeral value={1_000} currency="AUD" precision={0} /> though the average was significantly
136136+ higher.
146137 </Text>
147138 </div>
148139 ),