0.0.6 • Published 1 year ago
my-icons v0.0.6
My Icons
- This is a svg icons
- You can customized your icon
Installation
- If you NPM user then use
npm i my-icons
- If you YARN user then use
yarn add my-icons
Icons use
- At first download npm install my-icons@latest package
- Then import your specific icons with my-icons
import {MyIcon} from "my-icons"
function App() {
return (
<>
<MyIcon/>
</>
)
}
export default App
Icons props
- Total two props in my-icons
- size width, heigth
- color any
import {MyIcon} from "my-icons"
function App() {
return (
<>
<MyIcon size='30' color='black'/>
</>
)
}
export default App