dhre-component-lib 0.2.5 → 0.2.6

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,13 @@
1
+ import React from 'react';
2
+ import './Accordian.module.scss';
3
+ type AccordionProps = {
4
+ icon?: React.ReactNode;
5
+ title: React.ReactNode;
6
+ description?: React.ReactNode;
7
+ children?: React.ReactNode;
8
+ border?: boolean;
9
+ upArrowIcon: React.ReactNode;
10
+ downArrowIcon: React.ReactNode;
11
+ };
12
+ declare const Accordion: React.FC<AccordionProps>;
13
+ export default Accordion;
@@ -0,0 +1 @@
1
+ export { default } from "./Accordian";
package/dist/index.d.ts CHANGED
@@ -190,4 +190,15 @@ interface ModalProps {
190
190
  }
191
191
  declare const Modal: React.FC<ModalProps>;
192
192
 
193
- export { Avatar, Badge, Breadcrumb as BreadCrumb, Button, CustomCheckbox as Checkbox, CircularProgress, GetDirectionAction as Directions, CustomDivider as Divider, MapComponent as GoogleMap, CustomInputField as InputTextField, Link, Modal, OTPInput as OtpInput, Progress, CustomRadioButton as RadioButton, Search, Typography, PdfView as default };
193
+ type AccordionProps = {
194
+ icon?: React.ReactNode;
195
+ title: React.ReactNode;
196
+ description?: React.ReactNode;
197
+ children?: React.ReactNode;
198
+ border?: boolean;
199
+ upArrowIcon: React.ReactNode;
200
+ downArrowIcon: React.ReactNode;
201
+ };
202
+ declare const Accordion: React.FC<AccordionProps>;
203
+
204
+ export { Accordion as Accordian, Avatar, Badge, Breadcrumb as BreadCrumb, Button, CustomCheckbox as Checkbox, CircularProgress, GetDirectionAction as Directions, CustomDivider as Divider, MapComponent as GoogleMap, CustomInputField as InputTextField, Link, Modal, OTPInput as OtpInput, Progress, CustomRadioButton as RadioButton, Search, Typography, PdfView as default };