Text block is used to render a block of text that occupies the full width available, like a paragraph.
import {
render,
TextBlock,
BlockStack,
} from '@shopify/checkout-ui-extensions-react';
render('Checkout::Dynamic::Render', () => );
function Extension() {
return (
We have a 30-day return policy, which means you have 30 days after
receiving your item to request a return.
To be eligible for a return, your item must be in the same condition
that you received it, unworn or unused, with tags, and in its original
packaging. You’ll also need the receipt or proof of purchase.
);
}
import {extend, TextBlock, BlockStack} from '@shopify/checkout-ui-extensions';
extend('Checkout::Dynamic::Render', (root) => {
const textBlock = root.createComponent(BlockStack, undefined, [
root.createComponent(
TextBlock,
undefined,
'We have a 30-day return policy, which means you have 30 days after receiving your item to request a return.',
),
root.createComponent(
TextBlock,
undefined,
'To be eligible for a return, your item must be in the same condition that you received it, unworn or unused, with tags, and in its original packaging. You’ll also need the receipt or proof of purchase.',
),
]);
root.appendChild(textBlock);
});
Size of the text
Use to emphasize a word or a group of words.
Changes the visual appearance
Align text along the main axis.
A unique identifier for the component.
Extract<Size, 'extraSmall' | 'small' | 'base' | 'large' | 'extraLarge'> | 'medium'
'extraSmall' | 'small' | 'base' | 'large' | 'extraLarge' | 'fill'
Use to emphasize a word or a group of words.
'italic' | 'bold'
'accent' | 'interactive' | 'subdued' | 'info' | 'success' | 'warning' | 'critical' | 'monochrome'
'start' | 'center' | 'end'