mirror of
https://github.com/ershisan99/vacancies-trends-front.git
synced 2025-12-16 20:59:25 +00:00
37 lines
745 B
TypeScript
37 lines
745 B
TypeScript
import { extendTailwindMerge } from "tailwind-merge";
|
|
|
|
export const tremorTwMerge = extendTailwindMerge({
|
|
classGroups: {
|
|
boxShadow: [
|
|
{
|
|
shadow: [
|
|
{
|
|
tremor: ["input", "card", "dropdown"],
|
|
"dark-tremor": ["input", "card", "dropdown"],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
borderRadius: [
|
|
{
|
|
rounded: [
|
|
{
|
|
tremor: ["small", "default", "full"],
|
|
"dark-tremor": ["small", "default", "full"],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
fontSize: [
|
|
{
|
|
text: [
|
|
{
|
|
tremor: ["default", "title", "metric"],
|
|
"dark-tremor": ["default", "title", "metric"],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
});
|