mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 11:18:14 +08:00
30 lines
628 B
TypeScript
30 lines
628 B
TypeScript
import React from 'react';
|
|
import { css, Global } from '@emotion/react';
|
|
import { useTheme } from 'antd-style';
|
|
|
|
export default () => {
|
|
const token = useTheme();
|
|
return (
|
|
<Global
|
|
styles={css`
|
|
#nprogress {
|
|
.bar {
|
|
background: ${token.colorPrimary};
|
|
}
|
|
|
|
.peg {
|
|
box-shadow:
|
|
0 0 10px ${token.colorPrimary},
|
|
0 0 5px ${token.colorPrimary};
|
|
}
|
|
|
|
.spinner-icon {
|
|
border-top-color: ${token.colorPrimary};
|
|
border-left-color: ${token.colorPrimary};
|
|
}
|
|
}
|
|
`}
|
|
/>
|
|
);
|
|
};
|