@srimandir/pitru-paksh-common 2.29.0 → 2.30.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/dist/components/PackageSelect/PackageSelect.translations.d.ts +2 -0
- package/dist/components/TrustBadgesBar/TrustBadgesBar.d.ts +4 -4
- package/dist/components/TrustBadgesBar/TrustBadgesBar.icons.d.ts +6 -0
- package/dist/pitru-paksh-common.js +1133 -1023
- package/dist/pitru-paksh-common.umd.cjs +7 -7
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -8,10 +8,10 @@ export interface TrustBadge {
|
|
|
8
8
|
}
|
|
9
9
|
export interface TrustBadgesBarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
10
10
|
/**
|
|
11
|
-
* Badges to render
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
* fully customize (icons/labels/count).
|
|
11
|
+
* Badges to render. Defaults to 5 (Figma node 5185:115546, "TickerTape"):
|
|
12
|
+
* "100% Money Back Guarantee", "No Hidden Cost", "ISO 27001 Certified
|
|
13
|
+
* Company", "Official Temple Partner", "24x7 Support" — pass your own
|
|
14
|
+
* array to fully customize (icons/labels/count).
|
|
15
15
|
*/
|
|
16
16
|
badges?: TrustBadge[];
|
|
17
17
|
badgeClassName?: string;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export declare function ShieldTaskIcon(props: React.SVGProps<SVGSVGElement>): React.JSX.Element;
|
|
3
|
+
export declare function MoneyIcon(props: React.SVGProps<SVGSVGElement>): React.JSX.Element;
|
|
4
|
+
export declare function CertificateIcon(props: React.SVGProps<SVGSVGElement>): React.JSX.Element;
|
|
5
|
+
export declare function TemplePartnerIcon(props: React.SVGProps<SVGSVGElement>): React.JSX.Element;
|
|
6
|
+
export declare function SupportAgentIcon(props: React.SVGProps<SVGSVGElement>): React.JSX.Element;
|