jbx 2.4.0 → 2.6.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.
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ v18.x
package/README.md CHANGED
@@ -5,22 +5,22 @@ npm i jbx@latest capsize@latest styled-components@latest
5
5
  ```
6
6
 
7
7
  ```jsx
8
- import { JBX, MainHeader, Text, Space, Container } from "jbx";
8
+ import { JBX, MainHeader, Text, Space, Container } from 'jbx';
9
9
 
10
10
  function App() {
11
11
  return (
12
12
  <Container>
13
- <JBX accent={"#eb4d4b"} />
13
+ <JBX accent={'#f00'} />
14
14
  <MainHeader>React Blur</MainHeader>
15
15
  <Space h={1} />
16
16
  <Text>
17
- Tool that creates animated CSS transitions. Add sprites and get the code
18
- ready to paste in your site.
17
+ Tool that creates animated CSS transitions. Add sprites and get the code ready to paste in
18
+ your site.
19
19
  </Text>
20
20
  <Space h={2} />
21
21
  <Text>
22
- Tool that creates animated CSS transitions. Add sprites and get the code
23
- ready to paste in your site.
22
+ Tool that creates animated CSS transitions. Add sprites and get the code ready to paste in
23
+ your site.
24
24
  </Text>
25
25
  </Container>
26
26
  );