# Select Label Layout Element The Select Label Layout Element allows users to easily change and update the format and layout of their purchased shipping labels. This Element gives users the flexibility to choose the format that best suits their needs and preferences. Users can choose between letter (8.5 x 11 inches) or thermal (4 x 6 inches) formats. This can be used as a stand-alone Element and/or utilized within the [Account Settings Element](/apis/shipengine/docs/elements/account-settings/account-settings) via the Shipping Label Layout section. ## Create a Select Label Layout Element ```jsx import { SelectLabelLayout, ElementsProvider } from '@shipengine/elements'; import { themeConfig } from '../themeConfig'; const tokenPath = '/path/to/token/endpoint'; const Foo = () => { const getToken = useCallback(() => { return fetch(tokenPath).then((res) => res.text()); }, []); return ( ); }; ``` ## SDK ```js // Creates a new instance of the Elements SDK. const elements = new ElementsSDK(getToken, { onError: (err: Error) => console.error(err), themeConfig: themeConfig, locale: 'en-US', }); const selectLabelLayout = elements.create('selectLabelLayout'); ```