10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
|
import { PluginCreator } from 'tailwindcss/types/config';
|
||
|
|
||
|
const component = () => ({});
|
||
|
|
||
|
const creator: PluginCreator = ({ addComponents, theme }) => {
|
||
|
addComponents({});
|
||
|
};
|
||
|
|
||
|
export default creator;
|