iconoir/bin/templates/vue/provider-key-template.cjs

8 lines
207 B
JavaScript

const template =
() => `import type { InjectionKey, SVGAttributes } from "vue-demi";
const providerKey = Symbol() as InjectionKey<SVGAttributes>;
export default providerKey;
`;
module.exports = template;