mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
import createUtilityPlugin from '../util/createUtilityPlugin'
|
|
|
|
export default function() {
|
|
return createUtilityPlugin('gap', [
|
|
['gap', ['gridGap', 'gap']],
|
|
['col-gap', ['gridColumnGap', 'columnGap']],
|
|
['row-gap', ['gridRowGap', 'rowGap']],
|
|
])
|
|
}
|