You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

useThemeToken.ts 186B

12345678
  1. // hooks/useThemeToken.ts
  2. 'use client';
  3. import { theme as antdTheme } from 'antd';
  4. export const useThemeToken = () => {
  5. const { token } = antdTheme.useToken();
  6. return token;
  7. };