);
diff --git a/packages/design-system/src/components/ChoiceList/ChoiceList.stories.jsx b/packages/design-system/src/components/ChoiceList/ChoiceList.stories.jsx
index 16abbdac9e..87f678149a 100644
--- a/packages/design-system/src/components/ChoiceList/ChoiceList.stories.jsx
+++ b/packages/design-system/src/components/ChoiceList/ChoiceList.stories.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-
+import { Alert } from '../Alert';
import ChoiceList from './ChoiceList';
import Choice from './Choice';
@@ -23,7 +23,7 @@ export default {
{ label: 'Disabled choice 3', value: 'C', disabled: true },
],
},
- subcomponents: { Choice },
+ subcomponents: { Alert, Choice },
};
const Template = (args) => ;
@@ -64,3 +64,35 @@ InverseOption.args = {
InverseOption.parameters = {
backgrounds: { default: process.env.STORYBOOK_DS === 'medicare' ? 'Mgov dark' : 'Hcgov dark' },
};
+
+export const ChoiceChildren = Template.bind({});
+ChoiceChildren.args = {
+ name: 'radio_choices',
+ type: 'radio',
+ choices: [
+ {
+ label: 'Choice 1',
+ value: 'A',
+ defaultChecked: true,
+ checkedChildren: (
+
+ Based on the household information you provided, this option will give you the maximum
+ savings. We are adding some filler text just to show what it looks like when you have a
+ long alert as the checkedChildren of a Choice component.
+
+ ),
+ },
+ {
+ label: 'Choice 2',
+ requirementLabel: 'Choice hint text',
+ value: 'B',
+ checkedChildren: (
+
+ Based on the household information you provided, you can actually save more with the other
+ option. You are free to change this at any point during the application process until you
+ have signed and submitted your final application.
+
+ ),
+ },
+ ],
+};
diff --git a/packages/design-system/src/components/ChoiceList/__snapshots__/ChoiceList.test.tsx.snap b/packages/design-system/src/components/ChoiceList/__snapshots__/ChoiceList.test.tsx.snap
index e6aa22acf0..b5fc4f4043 100644
--- a/packages/design-system/src/components/ChoiceList/__snapshots__/ChoiceList.test.tsx.snap
+++ b/packages/design-system/src/components/ChoiceList/__snapshots__/ChoiceList.test.tsx.snap
@@ -15,47 +15,51 @@ exports[`ChoiceList Radio buttons and Checkboxes is a radio button group 1`] = `
Foo
-