Skip to content

Commit 5976906

Browse files
Alejandro Celayaacelaya
authored andcommitted
Add new FilterClearIcon
1 parent f7ab230 commit 5976906

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

images/icons/filter-clear.svg

Lines changed: 8 additions & 0 deletions
Loading
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// This file was auto-generated using scripts/generate-icons.js
2+
import type { JSX } from 'preact';
3+
4+
export type FilterClearIconProps = JSX.SVGAttributes<SVGSVGElement>;
5+
6+
/**
7+
* Icon generated from filter-clear.svg
8+
*/
9+
export default function FilterClearIcon(props: FilterClearIconProps) {
10+
return (
11+
<svg
12+
xmlns="http://www.w3.org/2000/svg"
13+
width="16"
14+
height="16"
15+
fill="none"
16+
viewBox="0 0 16 16"
17+
data-component="FilterClearIcon"
18+
{...props}
19+
>
20+
<path
21+
fill="currentColor"
22+
d="m8.4 12 1.428 2H5a1 1 0 0 1-.117-1.993L5 12zM11.172 9H13l.117-.007A1 1 0 0 0 13 7H9.744zM4.828 7l1.428 2H3a1 1 0 0 1-.117-1.993L3 7zM7.6 4H15l.117-.007A1 1 0 0 0 15 2H6.172zM1.268 2q.048.083.105.162L2.685 4H1a1 1 0 0 1-.117-1.993L1 2z"
23+
/>
24+
<path
25+
fill="currentColor"
26+
fill-rule="evenodd"
27+
d="M13.581 15.814a1 1 0 0 0 .233-1.395l-10-14A1 1 0 1 0 2.186 1.58l10 14a1 1 0 0 0 1.395.233"
28+
clip-rule="evenodd"
29+
/>
30+
</svg>
31+
);
32+
}

src/components/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export { default as FileImageFilledIcon } from './FileImageFilled';
4747
export { default as FilePdfIcon } from './FilePdf';
4848
export { default as FilePdfFilledIcon } from './FilePdfFilled';
4949
export { default as FilterIcon } from './Filter';
50+
export { default as FilterClearIcon } from './FilterClear';
5051
export { default as FlagIcon } from './Flag';
5152
export { default as FlagFilledIcon } from './FlagFilled';
5253
export { default as FolderIcon } from './Folder';

0 commit comments

Comments
 (0)