Skip to content

v1.0.0 First release! 🎉

Latest
Compare
Choose a tag to compare
@difhel difhel released this 29 Feb 13:16
· 4 commits to master since this release
2d16c26

v1.0.0

🎉 Congratulations on the release of the first version of the @nacteam/sdfui-icons library! This library is based on Material Icons (fonts.google.com/icons) and allows you to use Google icons in your projects as React components.

Example usage:

import { IconContentAdd24round } from '@nacteam/sdfui-icons';
import React from 'react'
import ReactDOM from 'react-dom/client'

const App = () => {
    return (
        <span style={{display: "flex", alignItems: "center"}}>
            <IconContentAdd24round /> Hello from @nacteam/sdfui-icons!
        </span>
    );
};

ReactDOM.createRoot(document.getElementById('root')!).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
)

image

Features:

  • 5 styles for each icon (filled, outlined, round, sharp, two-tone) 🎨
  • 14155 icon versions 🤯
  • Icons are categorized by file structure and prefixes in the name. 🔠
  • different icon sizes (18, 24, 36, 48px) 🔢
  • code generation based on https://github.com/google/material-design-icons repository (View sources) 🩼

Installation

$ npm install @nacteam/sdfui-icons@1.0.0