Fixed #4814: InputGroup: wrong Endtags in Button example on documentation

pull/4815/head
Emre Bayazitoglu 2023-11-14 12:05:02 +01:00 committed by GitHub
parent 6cea61e22f
commit d4cc121de0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -71,18 +71,18 @@ export default {
<InputGroup>
<Button label="Search" />
<InputText placeholder="Keyword" />
</div>
</InputGroup>
<InputGroup>
<InputText placeholder="Keyword" />
<Button icon="pi pi-search" severity="warning" />
</div>
</InputGroup>
<InputGroup>
<Button icon="pi pi-check" severity="success" />
<InputText placeholder="Vote" />
<Button icon="pi pi-times" severity="danger" />
</div>
</InputGroup>
</div>
</template>
`