diff --git a/fakemui/icons/ArrowCounterClockwise.tsx b/fakemui/icons/ArrowCounterClockwise.tsx new file mode 100644 index 000000000..c7a6b0c65 --- /dev/null +++ b/fakemui/icons/ArrowCounterClockwise.tsx @@ -0,0 +1,9 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const ArrowCounterClockwise = (props: IconProps) => ( + + + + +) diff --git a/fakemui/icons/ArrowsClockwise.tsx b/fakemui/icons/ArrowsClockwise.tsx new file mode 100644 index 000000000..6e5898218 --- /dev/null +++ b/fakemui/icons/ArrowsClockwise.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const ArrowsClockwise = (props: IconProps) => ( + + + + + + +) diff --git a/fakemui/icons/ArrowsLeftRight.tsx b/fakemui/icons/ArrowsLeftRight.tsx new file mode 100644 index 000000000..745d2baef --- /dev/null +++ b/fakemui/icons/ArrowsLeftRight.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const ArrowsLeftRight = (props: IconProps) => ( + + + + + +) diff --git a/fakemui/icons/ArrowsOut.tsx b/fakemui/icons/ArrowsOut.tsx new file mode 100644 index 000000000..3e3295f3a --- /dev/null +++ b/fakemui/icons/ArrowsOut.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const ArrowsOut = (props: IconProps) => ( + + + + + + + + + + +) diff --git a/fakemui/icons/ArrowsOutCardinal.tsx b/fakemui/icons/ArrowsOutCardinal.tsx new file mode 100644 index 000000000..700614058 --- /dev/null +++ b/fakemui/icons/ArrowsOutCardinal.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const ArrowsOutCardinal = (props: IconProps) => ( + + + + + + + + +) diff --git a/fakemui/icons/PushPinSimple.tsx b/fakemui/icons/PushPinSimple.tsx new file mode 100644 index 000000000..8c1459fd0 --- /dev/null +++ b/fakemui/icons/PushPinSimple.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const PushPinSimple = (props: IconProps) => ( + + + + + +) diff --git a/fakemui/icons/UserSwitch.tsx b/fakemui/icons/UserSwitch.tsx new file mode 100644 index 000000000..d67385ced --- /dev/null +++ b/fakemui/icons/UserSwitch.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { Icon, IconProps } from './Icon' + +export const UserSwitch = (props: IconProps) => ( + + + + + + + + +)