@qinetik/mdi
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

mdi-solid

Material Design Icons for SolidJS packaged as single components supporting SSR & Browser

It's developed for SolidJS Anique

But you can use it without anique as well

Installation

npm install @qinetik/mdi
# or if you use Yarn
yarn add @qinetik/mdi

Usage

Just search for an icon on materialdesignicons.com and look for its name.
The name translates to PascalCase followed by the suffix Icon in @qinetik/mdi.
Also it's possible to import with an alias. You can find them on the detail page of the respective icon.

For example the icons named alert and alert-circle:

import AlertIcon from '@qinetik/mdi/AlertIcon';
import AlertCircleIcon from '@qinetik/mdi/AlertCircleIcon';

const MyComponent = () => {
  return (
    <div>
      {/* The default color is the current text color (currentColor) */}
      <AlertIcon color="#fff" />
      {/* The default size is 24 */}
      <AlertCircleIcon class="some-class" size={16} />
      {/* This sets the icon size to the current font size */}
      <AlertIcon size="1em" />
    </div>
  );
};

Package Sidebar

Install

npm i @qinetik/mdi

Weekly Downloads

0

Version

1.0.4

License

(MIT AND OFL-1.1)

Unpacked Size

12.7 MB

Total Files

26075

Last publish

Collaborators

  • wakaztahir