1.0.4 • Published 6 months ago

@qinetik/mdi v1.0.4

Weekly downloads
-
License
(MIT AND OFL-1.1)
Repository
github
Last release
6 months ago

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>
  );
};
1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago