@elementor/icons 0.3.0 → 0.5.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.
@@ -3,7 +3,7 @@ import { SvgIcon, SvgIconProps } from '@elementor/ui';
3
3
 
4
4
  const PostTypeIcon = React.forwardRef( ( props: SvgIconProps, ref ) => {
5
5
  return (
6
- <SvgIcon viewBox="0 0 24 24" { ...props } ref={ ref } sx={ { stroke: 'currentColor', ...props.sx } }>
6
+ <SvgIcon viewBox="0 0 24 24" { ...props } ref={ ref }>
7
7
  <path fillRule="evenodd" clipRule="evenodd" d="M7 3.75C6.30964 3.75 5.75 4.30964 5.75 5V19C5.75 19.6904 6.30964 20.25 7 20.25H17C17.6904 20.25 18.25 19.6904 18.25 19V5C18.25 4.30964 17.6904 3.75 17 3.75H7ZM4.25 5C4.25 3.48122 5.48122 2.25 7 2.25H17C18.5188 2.25 19.75 3.48122 19.75 5V19C19.75 20.5188 18.5188 21.75 17 21.75H7C5.48122 21.75 4.25 20.5188 4.25 19V5ZM8.25 7C8.25 6.58579 8.58579 6.25 9 6.25H15C15.4142 6.25 15.75 6.58579 15.75 7C15.75 7.41421 15.4142 7.75 15 7.75H9C8.58579 7.75 8.25 7.41421 8.25 7ZM8.25 11C8.25 10.5858 8.58579 10.25 9 10.25H15C15.4142 10.25 15.75 10.5858 15.75 11C15.75 11.4142 15.4142 11.75 15 11.75H9C8.58579 11.75 8.25 11.4142 8.25 11ZM8.25 15C8.25 14.5858 8.58579 14.25 9 14.25H13C13.4142 14.25 13.75 14.5858 13.75 15C13.75 15.4142 13.4142 15.75 13 15.75H9C8.58579 15.75 8.25 15.4142 8.25 15Z" />
8
8
  </SvgIcon>
9
9
  );
@@ -0,0 +1,12 @@
1
+ import * as React from 'react';
2
+ import { SvgIcon, SvgIconProps } from '@elementor/ui';
3
+
4
+ const TrashIcon = React.forwardRef( ( props: SvgIconProps, ref ) => {
5
+ return (
6
+ <SvgIcon viewBox="0 0 24 24" { ...props } ref={ ref }>
7
+ <path fillRule="evenodd" clipRule="evenodd" d="M10 3.75C9.9337 3.75 9.87011 3.77634 9.82322 3.82322C9.77634 3.87011 9.75 3.9337 9.75 4V6.25H14.25V4C14.25 3.9337 14.2237 3.87011 14.1768 3.82322C14.1299 3.77634 14.0663 3.75 14 3.75H10ZM15.75 6.25V4C15.75 3.53587 15.5656 3.09075 15.2374 2.76256C14.9092 2.43437 14.4641 2.25 14 2.25H10C9.53587 2.25 9.09075 2.43437 8.76256 2.76256C8.43437 3.09075 8.25 3.53587 8.25 4V6.25H5.00877C5.00349 6.24994 4.9982 6.24994 4.9929 6.25H4C3.58579 6.25 3.25 6.58579 3.25 7C3.25 7.41421 3.58579 7.75 4 7.75H4.3099L5.25021 19.0337C5.25898 19.7508 5.54767 20.4368 6.05546 20.9445C6.57118 21.4603 7.27065 21.75 8 21.75H16C16.7293 21.75 17.4288 21.4603 17.9445 20.9445C18.4523 20.4368 18.741 19.7508 18.7498 19.0337L19.6901 7.75H20C20.4142 7.75 20.75 7.41421 20.75 7C20.75 6.58579 20.4142 6.25 20 6.25H19.0071C19.0018 6.24994 18.9965 6.24994 18.9912 6.25H15.75ZM5.8151 7.75L6.74741 18.9377C6.74914 18.9584 6.75 18.9792 6.75 19C6.75 19.3315 6.8817 19.6495 7.11612 19.8839C7.35054 20.1183 7.66848 20.25 8 20.25H16C16.3315 20.25 16.6495 20.1183 16.8839 19.8839C17.1183 19.6495 17.25 19.3315 17.25 19C17.25 18.9792 17.2509 18.9584 17.2526 18.9377L18.1849 7.75H5.8151ZM10 10.25C10.4142 10.25 10.75 10.5858 10.75 11V17C10.75 17.4142 10.4142 17.75 10 17.75C9.58579 17.75 9.25 17.4142 9.25 17V11C9.25 10.5858 9.58579 10.25 10 10.25ZM14 10.25C14.4142 10.25 14.75 10.5858 14.75 11V17C14.75 17.4142 14.4142 17.75 14 17.75C13.5858 17.75 13.25 17.4142 13.25 17V11C13.25 10.5858 13.5858 10.25 14 10.25Z" />
8
+ </SvgIcon>
9
+ );
10
+ } );
11
+
12
+ export default TrashIcon;
package/src/index.ts CHANGED
@@ -4,9 +4,13 @@ export { default as AIIcon } from './components/ai-icon';
4
4
  export { default as ArrowUpRightIcon } from './components/arrow-up-right-icon';
5
5
  export { default as CheckedCircleIcon } from './components/checked-circle-icon';
6
6
  export { default as ChevronDownIcon } from './components/chevron-down-icon';
7
+ export { default as ChevronRightIcon } from './components/chevron-right-icon';
7
8
  export { default as ContainerTemplateIcon } from './components/container-template-icon';
9
+ export { default as CopyIcon } from './components/copy-icon';
8
10
  export { default as DesktopIcon } from './components/desktop-icon';
9
11
  export { default as DotsVerticalIcon } from './components/dots-vertical-icon';
12
+ export { default as DotsHorizontalIcon } from './components/dots-horizontal-icon';
13
+ export { default as EraseIcon } from './components/erase-icon';
10
14
  export { default as Error404TemplateIcon } from './components/error-404-template-icon';
11
15
  export { default as ExpandIcon } from './components/expand-icon';
12
16
  export { default as EyeIcon } from './components/eye-icon';
@@ -16,6 +20,7 @@ export { default as FooterTemplateIcon } from './components/footer-template-icon
16
20
  export { default as HeaderTemplateIcon } from './components/header-template-icon';
17
21
  export { default as HelpIcon } from './components/help-icon';
18
22
  export { default as HistoryIcon } from './components/history-icon';
23
+ export { default as HomeIcon } from './components/home-icon';
19
24
  export { default as KeyboardIcon } from './components/keyboard-icon';
20
25
  export { default as LandingPageTemplateIcon } from './components/landing-page-template-icon';
21
26
  export { default as LaptopIcon } from './components/laptop-icon';
@@ -39,6 +44,7 @@ export { default as TabletLandscapeIcon } from './components/tablet-landscape-ic
39
44
  export { default as TabletPortraitIcon } from './components/tablet-icon';
40
45
  export { default as ThemeBuilderIcon } from './components/theme-builder-icon';
41
46
  export { default as ToggleRightIcon } from './components/toggle-right-icon';
47
+ export { default as TrashIcon } from './components/trash-icon';
42
48
  export { default as UpgradeIcon } from './components/upgrade-icon';
43
49
  export { default as WidescreenIcon } from './components/widescreen-icon';
44
50
  export { default as WordpressIcon } from './components/wordpress-icon';