Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 785 Bytes

File metadata and controls

29 lines (21 loc) · 785 Bytes

@assetbox/demo

NPM

This is a demo of the assetbox static-build and assetbox icon-build.

https://assetbox.github.io/docs/icon-build/svg-to-react-component

Example icon used

Ant Design Icons | MIT

Usage

import { Alert } from "@assetbox/demo-react-icon/antd-filled";
import { Alert as OutlinedAlert } from "@assetbox/demo-react-icon/antd-outlined";
import { Alert as TwoToneAlert } from "@assetbox/demo-react-icon/antd-twotone";

function App() {
  return (
    <div>
      <Alert />
      <OutlinedAlert />
      <TwoToneAlert />
    </div>
  );
}