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.
14 lines
273 B
14 lines
273 B
import { createStyles } from "antd-style";
|
|
|
|
const useStyles = createStyles(({ token }) => {
|
|
return {
|
|
title: {
|
|
marginBottom: "16px",
|
|
color: token.colorTextHeading,
|
|
fontWeight: "500",
|
|
fontSize: "16px",
|
|
},
|
|
};
|
|
});
|
|
|
|
export default useStyles;
|
|
|