diff --git a/fakemui/icons/Analytics.tsx b/fakemui/icons/Analytics.tsx new file mode 100644 index 000000000..19c8dcbd0 --- /dev/null +++ b/fakemui/icons/Analytics.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Analytics = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/BarChart.tsx b/fakemui/icons/BarChart.tsx new file mode 100644 index 000000000..56ebf7198 --- /dev/null +++ b/fakemui/icons/BarChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const BarChart = (props: IconProps) => ( + + + + + +) diff --git a/fakemui/icons/CheckBoxOutlineBlank.tsx b/fakemui/icons/CheckBoxOutlineBlank.tsx new file mode 100644 index 000000000..f7da2a141 --- /dev/null +++ b/fakemui/icons/CheckBoxOutlineBlank.tsx @@ -0,0 +1,8 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const CheckBoxOutlineBlank = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/IndeterminateCheckBox.tsx b/fakemui/icons/IndeterminateCheckBox.tsx new file mode 100644 index 000000000..ddcba0145 --- /dev/null +++ b/fakemui/icons/IndeterminateCheckBox.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const IndeterminateCheckBox = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/PieChart.tsx b/fakemui/icons/PieChart.tsx new file mode 100644 index 000000000..2cd2c473e --- /dev/null +++ b/fakemui/icons/PieChart.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const PieChart = (props: IconProps) => ( + + + + + +) diff --git a/fakemui/icons/RadioButtonChecked.tsx b/fakemui/icons/RadioButtonChecked.tsx new file mode 100644 index 000000000..2b8fd3785 --- /dev/null +++ b/fakemui/icons/RadioButtonChecked.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const RadioButtonChecked = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/RadioButtonUnchecked.tsx b/fakemui/icons/RadioButtonUnchecked.tsx new file mode 100644 index 000000000..aab29fe8c --- /dev/null +++ b/fakemui/icons/RadioButtonUnchecked.tsx @@ -0,0 +1,8 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const RadioButtonUnchecked = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/ShowChart.tsx b/fakemui/icons/ShowChart.tsx new file mode 100644 index 000000000..b88c6c2a1 --- /dev/null +++ b/fakemui/icons/ShowChart.tsx @@ -0,0 +1,8 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const ShowChart = (props: IconProps) => ( + + + +) diff --git a/fakemui/icons/Timeline.tsx b/fakemui/icons/Timeline.tsx new file mode 100644 index 000000000..49f46697c --- /dev/null +++ b/fakemui/icons/Timeline.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const Timeline = (props: IconProps) => ( + + + + + + + + +)