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