Back to Ice

`@ice/plugin-antd`

packages/plugin-antd/README.md

3.6.2318 B
Original Source

@ice/plugin-antd

An ice.js plugin to use antd components.

Usage

js
import { defineConfig } from '@ice/app';
import antd from '@ice/plugin-antd';

export default defineConfig(() => ({
  plugins: [antd({
    dark: true,
    compact: true,
    theme: {
      'primary-color': '#fd8',
    },
  })],
}));