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