Fixed #5175 - InputIcon component added

This commit is contained in:
tugcekucukoglu 2024-01-30 11:03:01 +03:00
parent bd4d56ef4c
commit f8a3167618
7 changed files with 163 additions and 0 deletions

View file

@ -0,0 +1,15 @@
<script>
import BaseComponent from 'primevue/basecomponent';
import InputIconStyle from 'primevue/inputicon/style';
export default {
name: 'BaseInputIcon',
extends: BaseComponent,
style: InputIconStyle,
provide() {
return {
$parentInstance: this
};
}
};
</script>