diff --git a/src/ec/packages/ec-component-search-form/docs/search-form.md b/src/ec/packages/ec-component-search-form/docs/search-form.md index eee045f4a..ec1cc19db 100644 --- a/src/ec/packages/ec-component-search-form/docs/search-form.md +++ b/src/ec/packages/ec-component-search-form/docs/search-form.md @@ -20,21 +20,21 @@ npm install --save @ecl-twig/ec-component-search-form ### Example: ```twig -{% include 'path/to/icon.html.twig' with { - text_input: { - id: 'input-search', - name: 'search', - extra_classes: 'ecl-search-form__text-input' - }, - button: { - variant: 'search', - icon: { - type: 'general', - name: 'search', - path: '/path-to-the-icon-file', - }, - label: 'Search', - extra_classes: 'ecl-search-form__button' - } +{% include 'path/to/icon.html.twig' with { + text_input: { + id: 'input-search', + name: 'search', + extra_classes: 'ecl-search-form__text-input' + }, + button: { + variant: 'search', + icon: { + type: 'general', + name: 'search', + path: '/path-to-the-icon-file', + }, + label: 'Search', + extra_classes: 'ecl-search-form__button' + } } %} ```