diff --git a/assets/icons/experimental/swap.svg b/assets/icons/experimental/swap.svg new file mode 100644 index 00000000..dcf04aef --- /dev/null +++ b/assets/icons/experimental/swap.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/icons/experimental/SwapIcon.tsx b/src/icons/experimental/SwapIcon.tsx new file mode 100644 index 00000000..d039a156 --- /dev/null +++ b/src/icons/experimental/SwapIcon.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 SwapIcon: 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 SwapIcon; diff --git a/src/icons/experimental/index.ts b/src/icons/experimental/index.ts index 52522931..2a41e7c3 100644 --- a/src/icons/experimental/index.ts +++ b/src/icons/experimental/index.ts @@ -16,3 +16,4 @@ export { default as TrashIcon } from './TrashIcon'; export { default as EditPenIcon } from './EditPenIcon'; export { default as HailingIcon } from './HailingIcon'; export { default as PinIcon } from './PinIcon'; +export { default as SwapIcon } from './SwapIcon';