diff --git a/assets/icons/experimental/cog-outline.svg b/assets/icons/experimental/cog-outline.svg new file mode 100644 index 00000000..6e79d552 --- /dev/null +++ b/assets/icons/experimental/cog-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/icons/experimental/event-repeat.svg b/assets/icons/experimental/event-repeat.svg new file mode 100644 index 00000000..040f8f8e --- /dev/null +++ b/assets/icons/experimental/event-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/assets/icons/experimental/support-agent.svg b/assets/icons/experimental/support-agent.svg new file mode 100644 index 00000000..7ea64ca2 --- /dev/null +++ b/assets/icons/experimental/support-agent.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/icons/experimental/CogOutlineIcon.tsx b/src/icons/experimental/CogOutlineIcon.tsx new file mode 100644 index 00000000..ed4f2a56 --- /dev/null +++ b/src/icons/experimental/CogOutlineIcon.tsx @@ -0,0 +1,27 @@ +// DO NOT EDIT. This file was generated by running `npm run generate`.; +import * as React from 'react'; +import { get } from '../../utils/themeGet'; +import { IconProps } from '../IconProps'; +type Props = IconProps; +const CogOutlineIcon: React.FC = ({ size = 'medium', color = 'inherit', ...rest }) => { + const props = { ...rest, color }; + const sizePx = Number.isFinite(size as number) + ? size + : get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props); + return ( + + + + ); +}; +export default CogOutlineIcon; diff --git a/src/icons/experimental/EventRepeatIcon.tsx b/src/icons/experimental/EventRepeatIcon.tsx new file mode 100644 index 00000000..92f17f81 --- /dev/null +++ b/src/icons/experimental/EventRepeatIcon.tsx @@ -0,0 +1,34 @@ +// DO NOT EDIT. This file was generated by running `npm run generate`.; +import * as React from 'react'; +import { get } from '../../utils/themeGet'; +import { IconProps } from '../IconProps'; +type Props = IconProps; +const EventRepeatIcon: React.FC = ({ size = 'medium', color = 'inherit', ...rest }) => { + const props = { ...rest, color }; + const sizePx = Number.isFinite(size as number) + ? size + : get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props); + return ( + + + + + + + + + + + ); +}; +export default EventRepeatIcon; diff --git a/src/icons/experimental/SupportAgentIcon.tsx b/src/icons/experimental/SupportAgentIcon.tsx new file mode 100644 index 00000000..3cc12f0d --- /dev/null +++ b/src/icons/experimental/SupportAgentIcon.tsx @@ -0,0 +1,27 @@ +// DO NOT EDIT. This file was generated by running `npm run generate`.; +import * as React from 'react'; +import { get } from '../../utils/themeGet'; +import { IconProps } from '../IconProps'; +type Props = IconProps; +const SupportAgentIcon: React.FC = ({ size = 'medium', color = 'inherit', ...rest }) => { + const props = { ...rest, color }; + const sizePx = Number.isFinite(size as number) + ? size + : get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props); + return ( + + + + ); +}; +export default SupportAgentIcon; diff --git a/src/icons/experimental/index.ts b/src/icons/experimental/index.ts index 7a7d65d5..0a728741 100644 --- a/src/icons/experimental/index.ts +++ b/src/icons/experimental/index.ts @@ -7,3 +7,6 @@ export { default as SpinnerIcon } from './SpinnerIcon'; export { default as PhoneCarOutlineIcon } from './PhoneCarOutlineIcon'; export { default as SearchIcon } from './SearchIcon'; export { default as BotIcon } from './BotIcon'; +export { default as EventRepeatIcon } from './EventRepeatIcon'; +export { default as CogOutlineIcon } from './CogOutlineIcon'; +export { default as SupportAgentIcon } from './SupportAgentIcon';