--- title: "Text Style | @text" description: "Set text style for text elements." keywords: ["text", "style", "italic", "font"] --- # Text Style Set text style for text elements. Usage: - `@text style-*;` This page contains only the **property configuration reference**. Complete documentation and usage examples will be added progressively in future updates. ---
## Reference ```js title="shilp.config.js" const shilpConfig = { source: "react", properties: { text: { style: { property: "font-style: ;", values: { normal: "normal", italic: "italic", }, }, }, }, }; export default shilpConfig; ```