@up42/up-components 0.15.0 → 0.15.1

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 type { SxProps, Theme } from '@mui/material';
3
+ export declare type ContactBoxProps = {
4
+ customIcon?: React.ReactNode;
5
+ text?: string;
6
+ actions: React.ReactNode;
7
+ size?: 'small' | 'large';
8
+ sx?: SxProps<Theme>;
9
+ };
10
+ /**
11
+ * Documentation: https://up-components.up42.dev/?path=/docs/patterns-contactbox
12
+ */
13
+ export declare const ContactBox: ({ customIcon, text, actions, size, sx }: ContactBoxProps) => JSX.Element;
@@ -32,6 +32,7 @@ export { Alert, type AlertProps } from './components/Alert/Alert';
32
32
  export { Banner, type BannerProps } from './components/Banner/Banner';
33
33
  export { Tooltip, type TooltipProps } from './components/Tooltip/Tooltip';
34
34
  export { InfoCard, type InfoCardProps } from './components/InfoCard/InfoCard';
35
+ export { ContactBox, type ContactBoxProps } from './components/ContactBox/ContactBox';
35
36
  export { Menu, MenuItem, type MenuProps, type MenuItemProps } from './components/Menu/Menu';
36
37
  export { ControlButton, type ControlButtonProps } from './components/ControlButton/ControlButton';
37
38
  export { CopyButton, type CopyButtonProps } from './components/CopyButton/CopyButton';