Linting fix

This commit is contained in:
Muaz Ahmad 2024-06-12 15:53:39 +05:00
parent 7b128a4662
commit d3af066224
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,6 @@
import React, { FC, ReactNode, useEffect, useState } from 'react';
import { ConfigProvider } from 'antd';
import { AntdDefaultTokens } from '../../styles/antd-default';
import AntdDefaultTokens from '../../styles/antd-default';
export type AntdThemeProps = {
children: ReactNode;

View file

@ -1,6 +1,6 @@
// TODO generate this file using style-definitions somehow
export const AntdDefaultTokens = {
const AntdDefaultTokens = {
colorLink: '#6544e9',
colorLinkHover: '#7a5cf3',
Modal: {
@ -23,3 +23,5 @@ export const AntdDefaultTokens = {
colorBgBase: '#e2e8f0',
fontFamily: '"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"',
};
export default AntdDefaultTokens;