| Name | Type | Description | Default |
|---|---|---|---|
| bottom | string | Applies the spacing scale to the bottom side. | - |
Required children | React.ReactNode | Custom content inside the bleed. | - |
| horizontal | string | Applies the spacing scale to the left and right sides. | - |
| left | string | Applies the spacing scale to the left side. | - |
| right | string | Applies the spacing scale to the right side. | - |
| space | string | Applies the spacing scale to all sides. | - |
| top | string | Applies the spacing scale to the top side. | - |
| vertical | string | Applies the spacing scale to the top and bottom sides. | - |
() => { return ( <DxcInset space="var(--spacing-padding-xl)"> <DxcFlex direction="column" gap="var(--spacing-padding-xl)"> <Placeholder height="var(--height-xxl)" /> <DxcBleed space="var(--spacing-padding-l)"> <Placeholder height="var(--height-xxl)" /> </DxcBleed> <Placeholder height="var(--height-xxl)" /> </DxcFlex> </DxcInset> ); }
() => { return ( <DxcInset space="var(--spacing-padding-xl)"> <DxcFlex direction="column" gap="var(--spacing-padding-xl)"> <Placeholder height="var(--height-xxl)" /> <DxcBleed bottom="var(--spacing-padding-l)" left="var(--spacing-padding-l)" right="var(--spacing-padding-m)" top="var(--spacing-padding-xs)" > <Placeholder height="var(--height-xxl)" /> </DxcBleed> <Placeholder height="var(--height-xxl)" /> </DxcFlex> </DxcInset> ); }