ui-library-spj 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ import '../../index.css'
2
+ import React from 'react'
3
+
4
+ function BasicButton() {
5
+ return (
6
+ <div className='bg-gray-700 min-h-screen min-w-screen'>
7
+ hi
8
+ </div>
9
+ )
10
+ }
11
+
12
+ export default BasicButton
package/index.css ADDED
@@ -0,0 +1 @@
1
+ @import "tailwindcss";
package/index.js ADDED
@@ -0,0 +1 @@
1
+ export {BasicButton} from './components/buttons/BasicButton';
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "ui-library-spj",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC",
12
+ "type": "module",
13
+ "dependencies": {
14
+ "@tailwindcss/postcss": "^4.1.18",
15
+ "postcss": "^8.5.6",
16
+ "react": "^19.2.3",
17
+ "tailwindcss": "^4.1.18"
18
+ }
19
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ plugins: {
3
+ "@tailwindcss/postcss": {},
4
+ }
5
+ }