mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2026-01-18 16:17:36 +00:00
26 lines
601 B
JavaScript
26 lines
601 B
JavaScript
export default function transformThemeValue(themeSection) {
|
|
if (['fontSize', 'outline'].includes(themeSection)) {
|
|
return (value) => (Array.isArray(value) ? value[0] : value)
|
|
}
|
|
|
|
if (
|
|
[
|
|
'fontFamily',
|
|
'boxShadow',
|
|
'transitionProperty',
|
|
'transitionDuration',
|
|
'transitionDelay',
|
|
'transitionTimingFunction',
|
|
'backgroundImage',
|
|
'backgroundSize',
|
|
'backgroundColor',
|
|
'cursor',
|
|
'animation',
|
|
].includes(themeSection)
|
|
) {
|
|
return (value) => (Array.isArray(value) ? value.join(', ') : value)
|
|
}
|
|
|
|
return (value) => value
|
|
}
|