1.0.8 • Published 8 months ago

@zykj2024/much-icons v1.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

Much Icons for React

Install

yarn add much-icons

Basic Usage

You can import it directly or destructure from much-icons when tree-shaking enabled.

import SmileOutlined from 'much-icons/SmileOutlined';
import { SmileOutlined } from 'much-icons';

import SmileFilled from 'much-icons/SmileFilled';
import SmileTwoTone from 'much-icons/SmileTwoTone';
import { SmileFilled, SmileTwoTone } from 'much-icons';

Component Interface

interface AntdIconProps {
  className?: string;
  onClick?: React.MouseEventHandler<SVGSVGElement>;
  style?: React.CSSProperties;
}

Release

npm run generate
npm run compile
npm publish