anima-ds-nucleus 1.0.20 → 1.0.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anima-ds-nucleus",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "Anima Design System - A comprehensive React component library",
5
5
  "author": "Nucleus Labs <ipvasallo@nucleus.com.ar>",
6
6
  "license": "UNLICENSED",
@@ -0,0 +1,40 @@
1
+ import { Typography } from '../../Atoms/Typography/Typography';
2
+
3
+ export const AccionesRapidas = ({
4
+ className = '',
5
+ ...props
6
+ }) => {
7
+ return (
8
+ <div
9
+ className={`w-full bg-white ${className}`}
10
+ style={{
11
+ height: '150px',
12
+ border: '1px solid #c4c4c4',
13
+ borderRadius: '16px',
14
+ paddingTop: '24px',
15
+ paddingLeft: '24px',
16
+ display: 'flex',
17
+ flexDirection: 'column',
18
+ }}
19
+ {...props}
20
+ >
21
+ <Typography
22
+ variant="body-lg"
23
+ style={{
24
+ fontFamily: 'IBM Plex Sans',
25
+ fontWeight: 400,
26
+ fontStyle: 'normal',
27
+ fontSize: '20px',
28
+ lineHeight: '30px',
29
+ letterSpacing: '0%',
30
+ verticalAlign: 'middle',
31
+ color: '#223B40',
32
+ }}
33
+ >
34
+ Acciones rápidas
35
+ </Typography>
36
+ </div>
37
+ );
38
+ };
39
+
40
+ export default AccionesRapidas;
@@ -0,0 +1,11 @@
1
+ import { AccionesRapidas } from './AccionesRapidas';
2
+
3
+ export default {
4
+ title: 'Layout/AccionesRapidas',
5
+ component: AccionesRapidas,
6
+ tags: ['autodocs'],
7
+ };
8
+
9
+ export const Default = {
10
+ args: {},
11
+ };
package/src/index.js CHANGED
@@ -45,6 +45,7 @@ export { Drawer } from './components/Layout/Drawer/Drawer';
45
45
  export { Dropdown } from './components/Layout/Dropdown/Dropdown';
46
46
  export { Stepper } from './components/Layout/Stepper/Stepper';
47
47
  export { SaludoConFechaDashboard } from './components/Layout/SaludoConFechaDashboard/SaludoConFechaDashboard';
48
+ export { AccionesRapidas } from './components/Layout/AccionesRapidas/AccionesRapidas';
48
49
 
49
50
  // DataDisplay
50
51
  export { Card } from './components/DataDisplay/Card/Card';