# Divider A divider separates content and represents a thematic break between elements. ```tsx import { reactExtension, Divider, } from '@shopify/ui-extensions-react/checkout'; export default reactExtension( 'purchase.checkout.block.render', () => , ); function Extension() { return ; } ``` ```js import {extension, Divider} from '@shopify/ui-extensions/checkout'; export default extension('purchase.checkout.block.render', (root) => { const divider = root.createComponent(Divider); root.appendChild(divider); }); ``` ## DividerProps ### DividerProps ### size value: `Extract` Use to create dividers with varying widths. ### direction value: `Direction` Use to specify direction of divider. ### alignment value: `Alignment` Use to specify alignment of contents of divider. ### id value: `string` A unique identifier for the component.