@mayankjha07/modern-social-icons
v0.1.1
Published
A modern, tree-shakable icon library for React, Vue, and HTML.
Readme
Modern Social Icons
A modern, tree-shakable icon library for React, Vue, and HTML.
Installation
npm install @mayankjha07/modern-social-iconsUsage
React
import { GithubIcon, TwitterIcon } from '@mayankjha07/modern-social-icons/react';
function MyComponent() {
return (
<div>
<GithubIcon />
<TwitterIcon />
</div>
);
}Vue
<template>
<div>
<GithubIcon />
<TwitterIcon />
</div>
</template>
<script>
import { GithubIcon, TwitterIcon } from '@mayankjha07/modern-social-icons/vue';
export default {
components: {
GithubIcon,
TwitterIcon,
},
};
</script>