You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On your `tailwind.config.js` file, update the content entry:
18
+
19
+
```diff
20
+
/** @type {import('tailwindcss').Config} */
21
+
export default {
22
+
content: [
23
+
"./index.html",
24
+
"./src/**/*.{js,ts,jsx,tsx}",
25
+
+ "node_modules/tail-react/dist/index.js"
26
+
],
27
+
theme: {
28
+
extend: {},
29
+
},
30
+
plugins: [
31
+
+ import('@tailwindcss/forms'),
32
+
],
33
+
}
52
34
```
53
-
54
-
## Components
55
-
56
-
The component library includes the following components:
57
-
58
-
-`Button`: A customizable button component with various styles and sizes.
59
-
60
-
-`Table`: A flexible and customizable table component for displaying data in tabular format.
61
-
62
-
## Customization
63
-
64
-
The components are built with Tailwind CSS, providing you with the flexibility to customize their appearance by leveraging Tailwind's utility classes. You can also pass custom CSS classes using the `className` prop to apply additional styles specific to your project.
65
-
66
-
## Documentation
67
-
68
-
For detailed information on each component and its available props, please refer to the documentation provided with the component library.
69
-
70
-
## License
71
-
72
-
This component library is open-source and distributed under the MIT License. You are free to use, modify, and distribute it in your projects.
73
-
74
-
## Contributing
75
-
76
-
Contributions to this component library are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the project's GitHub repository.
77
-
78
-
## Acknowledgments
79
-
80
-
A special thanks to the Tailwind CSS and React communities for their efforts in creating and maintaining these powerful tools. Their contributions have made it easier for developers like us to create beautiful and functional user interfaces.
0 commit comments