@@ -40,6 +40,14 @@ import {
4040 Override as IconOverride ,
4141 Sizes as IconSizes ,
4242} from '../stories/icon.stories' ;
43+ import {
44+ BrandIcons as IconFrameBrandIcons ,
45+ CustomSurface as IconFrameCustomSurface ,
46+ Default as IconFrameDefault ,
47+ IconSizes as IconFrameIconSizes ,
48+ meta as iconFrameMeta ,
49+ MultipleTreatments as IconFrameMultipleTreatments ,
50+ } from '../stories/icon-frame.stories' ;
4351import {
4452 Default ,
4553 Disabled as InputDisabled ,
@@ -77,6 +85,7 @@ import {
7785 ConnectedAccounts as SectionConnectedAccounts ,
7886 Default as SectionDefault ,
7987 Destructive as SectionDestructive ,
88+ IconFrameMedia as SectionIconFrameMedia ,
8089 meta as sectionMeta ,
8190 MultipleEmailAndPhoneNumbers as SectionMultipleEmailAndPhoneNumbers ,
8291} from '../stories/section.stories' ;
@@ -124,6 +133,7 @@ const sectionModule: StoryModule = {
124133 Default : SectionDefault ,
125134 MultipleEmailAndPhoneNumbers : SectionMultipleEmailAndPhoneNumbers ,
126135 ConnectedAccounts : SectionConnectedAccounts ,
136+ IconFrameMedia : SectionIconFrameMedia ,
127137 Destructive : SectionDestructive ,
128138} ;
129139const dialogComponentModule : StoryModule = { meta : dialogComponentMeta , Default : DialogDefault } ;
@@ -196,6 +206,15 @@ const iconModule: StoryModule = {
196206 Override : IconOverride ,
197207} ;
198208
209+ const iconFrameModule : StoryModule = {
210+ meta : iconFrameMeta ,
211+ Default : IconFrameDefault ,
212+ IconSizes : IconFrameIconSizes ,
213+ CustomSurface : IconFrameCustomSurface ,
214+ MultipleTreatments : IconFrameMultipleTreatments ,
215+ BrandIcons : IconFrameBrandIcons ,
216+ } ;
217+
199218// Headless primitives carry just `meta` (no story functions). Like every component
200219// they're documented as a single overview page; their live demos come from `<Story>` /
201220// `<Preview>` embeds in the MDX, which import the stories module directly.
@@ -263,6 +282,7 @@ export const registry: StoryModule[] = [
263282 dialogComponentModule ,
264283 headingModule ,
265284 iconModule ,
285+ iconFrameModule ,
266286 menuComponentModule ,
267287 popoverComponentModule ,
268288 sectionModule ,
0 commit comments