diff --git a/src/icons/FilterAll/FilterAllIcon.tsx b/src/icons/FilterAll/FilterAllIcon.tsx new file mode 100644 index 000000000..5d6e0f7d2 --- /dev/null +++ b/src/icons/FilterAll/FilterAllIcon.tsx @@ -0,0 +1,27 @@ +import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants'; +import { IconProps } from '../types'; + +export const FilterAllIcon = ({ + width = DEFAULT_WIDTH, + height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, + ...props +}: IconProps): JSX.Element => { + return ( + + + + ); +}; + +export default FilterAllIcon; + diff --git a/src/icons/FilterAll/index.ts b/src/icons/FilterAll/index.ts new file mode 100644 index 000000000..c30debe48 --- /dev/null +++ b/src/icons/FilterAll/index.ts @@ -0,0 +1 @@ +export { default as FilterAllIcon } from './FilterAllIcon'; diff --git a/src/icons/index.ts b/src/icons/index.ts index 9321c2d56..e392acb19 100644 --- a/src/icons/index.ts +++ b/src/icons/index.ts @@ -92,6 +92,7 @@ export * from './FileCopy'; export * from './FileUpload'; export { default as FilledCircleIcon } from './FilledCircleIcon'; export * from './Filter'; +export * from './FilterAll'; export * from './FolderRounded'; export * from './Fullscreen'; export * from './GetApp';