Custom Icon page added

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-18 17:58:46 +03:00
parent 949f7e94d7
commit 8875bf96fb
8 changed files with 165 additions and 5 deletions

View file

@ -0,0 +1,23 @@
<template>
<DocSectionText v-bind="$attrs">
<p>Any time of image can be used as an icon.</p>
</DocSectionText>
<DocSectionCode :code="code" hideToggleCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
<Dropdown>
<template #dropdownicon>
<img alt="dropdown icon" src="/assets/icons/arrow_down.png">
</template>
</Dropdown>`
}
};
}
};
</script>