From 82bed37f36971f6eff7a373f910c0bac1e52c0ab Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Tue, 30 Dec 2025 12:16:25 +0000 Subject: [PATCH] feat: Add new icon components for Columns, FilterClear, Json, Pagination, and Rows --- fakemui/icons/Columns.tsx | 12 ++++++++++++ fakemui/icons/FilterClear.tsx | 11 +++++++++++ fakemui/icons/Json.tsx | 15 +++++++++++++++ fakemui/icons/Pagination.tsx | 15 +++++++++++++++ fakemui/icons/Rows.tsx | 12 ++++++++++++ 5 files changed, 65 insertions(+) create mode 100644 fakemui/icons/Columns.tsx create mode 100644 fakemui/icons/FilterClear.tsx create mode 100644 fakemui/icons/Json.tsx create mode 100644 fakemui/icons/Pagination.tsx create mode 100644 fakemui/icons/Rows.tsx diff --git a/fakemui/icons/Columns.tsx b/fakemui/icons/Columns.tsx new file mode 100644 index 000000000..2eaf90be2 --- /dev/null +++ b/fakemui/icons/Columns.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Columns = (props: IconProps) => ( + + + + + +) + +export default Columns diff --git a/fakemui/icons/FilterClear.tsx b/fakemui/icons/FilterClear.tsx new file mode 100644 index 000000000..fdfa307f3 --- /dev/null +++ b/fakemui/icons/FilterClear.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const FilterClear = (props: IconProps) => ( + + + + +) + +export default FilterClear diff --git a/fakemui/icons/Json.tsx b/fakemui/icons/Json.tsx new file mode 100644 index 000000000..05767ea01 --- /dev/null +++ b/fakemui/icons/Json.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Json = (props: IconProps) => ( + + + + + + + + +) + +export default Json diff --git a/fakemui/icons/Pagination.tsx b/fakemui/icons/Pagination.tsx new file mode 100644 index 000000000..e6a7ea66d --- /dev/null +++ b/fakemui/icons/Pagination.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Pagination = (props: IconProps) => ( + + + + 2 + + + + +) + +export default Pagination diff --git a/fakemui/icons/Rows.tsx b/fakemui/icons/Rows.tsx new file mode 100644 index 000000000..a4d850f5f --- /dev/null +++ b/fakemui/icons/Rows.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Rows = (props: IconProps) => ( + + + + + +) + +export default Rows