mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
import { GlobalComponentConstructor } from '../../ts-helpers';
|
|
import { Icon } from '../index';
|
|
|
|
declare class SearchIcon extends Icon {}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface GlobalComponents {
|
|
SearchIcon: GlobalComponentConstructor<SearchIcon>;
|
|
}
|
|
}
|
|
|
|
export default SearchIcon;
|