Bundle of Website development and Technology icons such databases, frameworks, languages, libraries…
yarn add @wticons/astro
---
import { Php, AdobePhotoshop, VisualStudioCode } from '@wticons/astro';
---
<Php/>
<AdobePhotoshop/>
<VisualStudioCode/>
All icons are Astro component with {...Astro.props}
added to the root svg
element.
This should enable you to customize the element as you see fit.
<Php class='some classes' data-somethinf='data' id='id' />;
Because these are technology icons, there may be conflicts with library name such as React. This can easily be solved by using an alias:
import { Astro as AstroIcon } from '@wticons/astro';