Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions assets/icons/experimental/exit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/components/experimental/Popover/Popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ interface PopoverProps extends Omit<BasePopoverProps, 'children'> {
}

const StyledPopover = styled(BasePopover)`
overflow: auto;
background: ${getSemanticValue('surface')};
padding: ${get('space.4')};
box-shadow: 0 2px 4px -1px hsla(0, 0%, 0%, 0.2), 0 1px 10px 0 hsla(0, 0%, 0%, 0.12),
Expand Down
2 changes: 1 addition & 1 deletion src/components/experimental/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export { IconButton } from './IconButton/IconButton';
export { InlineSpinner } from './InlineSpinner/InlineSpinner';
export { Input } from './Input/Input';
export { Label } from './Label/Label';
export { ListBox, ListBoxItem } from './ListBox/ListBox';
export { ListBox, ListBoxItem, LabelText, DescriptionText } from './ListBox/ListBox';
export { Modal } from './Modal/Modal';
export { Popover } from './Popover/Popover';
export { Search } from './Search/Search';
Expand Down
27 changes: 27 additions & 0 deletions src/icons/experimental/ExitIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// DO NOT EDIT. This file was generated by running `npm run generate`.;
import * as React from 'react';
import { get } from '../../utils/themeGet';
import { IconProps } from '../IconProps';
type Props = IconProps;
const ExitIcon: React.FC<Props> = ({ size = 'medium', color = 'inherit', ...rest }) => {
const props = { ...rest, color };
const sizePx = Number.isFinite(size as number)
? size
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
return (
<svg
{...props}
width={sizePx}
height={sizePx}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M5.045 21a1.992 1.992 0 01-1.444-.587C3.2 20.02 3 19.55 3 19V5c0-.55.2-1.02.6-1.413C4.002 3.196 4.484 3 5.046 3h6.137c.29 0 .532.096.729.288.196.191.293.429.293.712s-.098.52-.293.713a1.001 1.001 0 01-.73.287H5.046v14h6.137c.29 0 .532.096.729.288.196.191.293.429.293.712s-.098.52-.293.712a1.001 1.001 0 01-.73.288H5.046zm12.452-8H10.16c-.29 0-.533-.096-.729-.287A.957.957 0 019.136 12c0-.283.098-.52.294-.713.196-.191.44-.287.73-.287h7.337L15.58 9.125a.907.907 0 01-.28-.675c0-.267.093-.5.28-.7a.98.98 0 01.716-.313.979.979 0 01.742.288l3.656 3.575a.95.95 0 010 1.4l-3.656 3.575a.963.963 0 01-.729.288 1.054 1.054 0 01-.729-.313.96.96 0 01-.268-.713.966.966 0 01.294-.687L17.497 13z"
fill="currentColor"
/>
</svg>
);
};
export default ExitIcon;
1 change: 1 addition & 0 deletions src/icons/experimental/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ export { default as BotIcon } from './BotIcon';
export { default as EventRepeatIcon } from './EventRepeatIcon';
export { default as CogOutlineIcon } from './CogOutlineIcon';
export { default as SupportAgentIcon } from './SupportAgentIcon';
export { default as ExitIcon } from './ExitIcon';