13 lines
325 B
TypeScript
13 lines
325 B
TypeScript
import { GlobalComponentConstructor } from '../../ts-helpers';
|
|
import { Icon } from '../index';
|
|
|
|
declare class SearchMinusIcon extends Icon {}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface GlobalComponents {
|
|
SearchMinusIcon: GlobalComponentConstructor<SearchMinusIcon>;
|
|
}
|
|
}
|
|
|
|
export default SearchMinusIcon;
|