diff --git a/src/Icons/Abstract/AccessibilityIcon.tsx b/src/Icons/Abstract/AccessibilityIcon.tsx index 2f837b30..bd1dfe85 100644 --- a/src/Icons/Abstract/AccessibilityIcon.tsx +++ b/src/Icons/Abstract/AccessibilityIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AccessibilityIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AccessibilityIcon = React.forwardRef( ); AccessibilityIcon.displayName = 'AccessibilityIcon'; AccessibilityIcon.propTypes = {iconType: PropTypes.string}; -AccessibilityIcon.defaultProps = {iconType: 'Abstract'}; - -export default AccessibilityIcon; \ No newline at end of file +AccessibilityIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/CheckCircledIcon.tsx b/src/Icons/Abstract/CheckCircledIcon.tsx index 85263f68..4e660507 100644 --- a/src/Icons/Abstract/CheckCircledIcon.tsx +++ b/src/Icons/Abstract/CheckCircledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CheckCircledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CheckCircledIcon = React.forwardRef( ); CheckCircledIcon.displayName = 'CheckCircledIcon'; CheckCircledIcon.propTypes = {iconType: PropTypes.string}; -CheckCircledIcon.defaultProps = {iconType: 'Abstract'}; - -export default CheckCircledIcon; \ No newline at end of file +CheckCircledIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/CheckIcon.tsx b/src/Icons/Abstract/CheckIcon.tsx index c0eb59f6..37058383 100644 --- a/src/Icons/Abstract/CheckIcon.tsx +++ b/src/Icons/Abstract/CheckIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CheckIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CheckIcon = React.forwardRef( ); CheckIcon.displayName = 'CheckIcon'; CheckIcon.propTypes = {iconType: PropTypes.string}; -CheckIcon.defaultProps = {iconType: 'Abstract'}; - -export default CheckIcon; \ No newline at end of file +CheckIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/CircleBackslashIcon.tsx b/src/Icons/Abstract/CircleBackslashIcon.tsx index c4b59847..c95a5c77 100644 --- a/src/Icons/Abstract/CircleBackslashIcon.tsx +++ b/src/Icons/Abstract/CircleBackslashIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CircleBackslashIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CircleBackslashIcon = React.forwardRef( ); CircleBackslashIcon.displayName = 'CircleBackslashIcon'; CircleBackslashIcon.propTypes = {iconType: PropTypes.string}; -CircleBackslashIcon.defaultProps = {iconType: 'Abstract'}; - -export default CircleBackslashIcon; \ No newline at end of file +CircleBackslashIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/CircleIcon.tsx b/src/Icons/Abstract/CircleIcon.tsx index c34ab535..005f05da 100644 --- a/src/Icons/Abstract/CircleIcon.tsx +++ b/src/Icons/Abstract/CircleIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CircleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CircleIcon = React.forwardRef( ); CircleIcon.displayName = 'CircleIcon'; CircleIcon.propTypes = {iconType: PropTypes.string}; -CircleIcon.defaultProps = {iconType: 'Abstract'}; - -export default CircleIcon; \ No newline at end of file +CircleIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/CommitIcon.tsx b/src/Icons/Abstract/CommitIcon.tsx index 420834a4..33787e25 100644 --- a/src/Icons/Abstract/CommitIcon.tsx +++ b/src/Icons/Abstract/CommitIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CommitIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CommitIcon = React.forwardRef( ); CommitIcon.displayName = 'CommitIcon'; CommitIcon.propTypes = {iconType: PropTypes.string}; -CommitIcon.defaultProps = {iconType: 'Abstract'}; - -export default CommitIcon; \ No newline at end of file +CommitIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/CopyIcon.tsx b/src/Icons/Abstract/CopyIcon.tsx index dab2d3fc..805c45e8 100644 --- a/src/Icons/Abstract/CopyIcon.tsx +++ b/src/Icons/Abstract/CopyIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CopyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { - return ; + return ; } ); CopyIcon.displayName = 'CopyIcon'; CopyIcon.propTypes = {iconType: PropTypes.string}; -CopyIcon.defaultProps = {iconType: 'Abstract'}; - -export default CopyIcon; \ No newline at end of file +CopyIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/Cross1Icon.tsx b/src/Icons/Abstract/Cross1Icon.tsx index 986557fa..e04872fc 100644 --- a/src/Icons/Abstract/Cross1Icon.tsx +++ b/src/Icons/Abstract/Cross1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Cross1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Cross1Icon = React.forwardRef( ); Cross1Icon.displayName = 'Cross1Icon'; Cross1Icon.propTypes = {iconType: PropTypes.string}; -Cross1Icon.defaultProps = {iconType: 'Abstract'}; - -export default Cross1Icon; \ No newline at end of file +Cross1Icon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/Cross2Icon.tsx b/src/Icons/Abstract/Cross2Icon.tsx index 5a935e30..25863d57 100644 --- a/src/Icons/Abstract/Cross2Icon.tsx +++ b/src/Icons/Abstract/Cross2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Cross2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Cross2Icon = React.forwardRef( ); Cross2Icon.displayName = 'Cross2Icon'; Cross2Icon.propTypes = {iconType: PropTypes.string}; -Cross2Icon.defaultProps = {iconType: 'Abstract'}; - -export default Cross2Icon; \ No newline at end of file +Cross2Icon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/CrossCircledIcon.tsx b/src/Icons/Abstract/CrossCircledIcon.tsx index 0cfdb2a6..43d5eab0 100644 --- a/src/Icons/Abstract/CrossCircledIcon.tsx +++ b/src/Icons/Abstract/CrossCircledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CrossCircledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CrossCircledIcon = React.forwardRef( ); CrossCircledIcon.displayName = 'CrossCircledIcon'; CrossCircledIcon.propTypes = {iconType: PropTypes.string}; -CrossCircledIcon.defaultProps = {iconType: 'Abstract'}; - -export default CrossCircledIcon; \ No newline at end of file +CrossCircledIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/DotFilledIcon.tsx b/src/Icons/Abstract/DotFilledIcon.tsx index e20efa8c..cc4f9e61 100644 --- a/src/Icons/Abstract/DotFilledIcon.tsx +++ b/src/Icons/Abstract/DotFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DotFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DotFilledIcon = React.forwardRef( ); DotFilledIcon.displayName = 'DotFilledIcon'; DotFilledIcon.propTypes = {iconType: PropTypes.string}; -DotFilledIcon.defaultProps = {iconType: 'Abstract'}; - -export default DotFilledIcon; \ No newline at end of file +DotFilledIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/DotIcon.tsx b/src/Icons/Abstract/DotIcon.tsx index 05181c88..02b9af07 100644 --- a/src/Icons/Abstract/DotIcon.tsx +++ b/src/Icons/Abstract/DotIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DotIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DotIcon = React.forwardRef( ); DotIcon.displayName = 'DotIcon'; DotIcon.propTypes = {iconType: PropTypes.string}; -DotIcon.defaultProps = {iconType: 'Abstract'}; - -export default DotIcon; \ No newline at end of file +DotIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/DotsHorizontalIcon.tsx b/src/Icons/Abstract/DotsHorizontalIcon.tsx index df3233ff..c9228283 100644 --- a/src/Icons/Abstract/DotsHorizontalIcon.tsx +++ b/src/Icons/Abstract/DotsHorizontalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DotsHorizontalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DotsHorizontalIcon = React.forwardRef( ); DotsHorizontalIcon.displayName = 'DotsHorizontalIcon'; DotsHorizontalIcon.propTypes = {iconType: PropTypes.string}; -DotsHorizontalIcon.defaultProps = {iconType: 'Abstract'}; - -export default DotsHorizontalIcon; \ No newline at end of file +DotsHorizontalIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/DotsVerticalIcon.tsx b/src/Icons/Abstract/DotsVerticalIcon.tsx index 060d692b..4ffbcd45 100644 --- a/src/Icons/Abstract/DotsVerticalIcon.tsx +++ b/src/Icons/Abstract/DotsVerticalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DotsVerticalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DotsVerticalIcon = React.forwardRef( ); DotsVerticalIcon.displayName = 'DotsVerticalIcon'; DotsVerticalIcon.propTypes = {iconType: PropTypes.string}; -DotsVerticalIcon.defaultProps = {iconType: 'Abstract'}; - -export default DotsVerticalIcon; \ No newline at end of file +DotsVerticalIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/DownloadIcon.tsx b/src/Icons/Abstract/DownloadIcon.tsx index 8bcd40d2..0ccd329b 100644 --- a/src/Icons/Abstract/DownloadIcon.tsx +++ b/src/Icons/Abstract/DownloadIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DownloadIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DownloadIcon = React.forwardRef( ); DownloadIcon.displayName = 'DownloadIcon'; DownloadIcon.propTypes = {iconType: PropTypes.string}; -DownloadIcon.defaultProps = {iconType: 'Abstract'}; - -export default DownloadIcon; \ No newline at end of file +DownloadIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/DragHandleDots1Icon.tsx b/src/Icons/Abstract/DragHandleDots1Icon.tsx index 196cac6b..fe2c6a55 100644 --- a/src/Icons/Abstract/DragHandleDots1Icon.tsx +++ b/src/Icons/Abstract/DragHandleDots1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DragHandleDots1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DragHandleDots1Icon = React.forwardRef( ); DragHandleDots1Icon.displayName = 'DragHandleDots1Icon'; DragHandleDots1Icon.propTypes = {iconType: PropTypes.string}; -DragHandleDots1Icon.defaultProps = {iconType: 'Abstract'}; - -export default DragHandleDots1Icon; \ No newline at end of file +DragHandleDots1Icon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/DragHandleDots2Icon.tsx b/src/Icons/Abstract/DragHandleDots2Icon.tsx index dc276dd5..fccd0a6f 100644 --- a/src/Icons/Abstract/DragHandleDots2Icon.tsx +++ b/src/Icons/Abstract/DragHandleDots2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DragHandleDots2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DragHandleDots2Icon = React.forwardRef( ); DragHandleDots2Icon.displayName = 'DragHandleDots2Icon'; DragHandleDots2Icon.propTypes = {iconType: PropTypes.string}; -DragHandleDots2Icon.defaultProps = {iconType: 'Abstract'}; - -export default DragHandleDots2Icon; \ No newline at end of file +DragHandleDots2Icon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/DragHandleHorizontalIcon.tsx b/src/Icons/Abstract/DragHandleHorizontalIcon.tsx index 92de81a6..a5a9ff86 100644 --- a/src/Icons/Abstract/DragHandleHorizontalIcon.tsx +++ b/src/Icons/Abstract/DragHandleHorizontalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DragHandleHorizontalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DragHandleHorizontalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DragHandleVerticalIcon = React.forwardRef ); DragHandleVerticalIcon.displayName = 'DragHandleVerticalIcon'; DragHandleVerticalIcon.propTypes = {iconType: PropTypes.string}; -DragHandleVerticalIcon.defaultProps = {iconType: 'Abstract'}; - -export default DragHandleVerticalIcon; \ No newline at end of file +DragHandleVerticalIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/EnterFullScreenIcon.tsx b/src/Icons/Abstract/EnterFullScreenIcon.tsx index feb42c70..be5c76cf 100644 --- a/src/Icons/Abstract/EnterFullScreenIcon.tsx +++ b/src/Icons/Abstract/EnterFullScreenIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const EnterFullScreenIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const EnterFullScreenIcon = React.forwardRef( ); EnterFullScreenIcon.displayName = 'EnterFullScreenIcon'; EnterFullScreenIcon.propTypes = {iconType: PropTypes.string}; -EnterFullScreenIcon.defaultProps = {iconType: 'Abstract'}; - -export default EnterFullScreenIcon; \ No newline at end of file +EnterFullScreenIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/EnterIcon.tsx b/src/Icons/Abstract/EnterIcon.tsx index d0d95843..11eb0f9c 100644 --- a/src/Icons/Abstract/EnterIcon.tsx +++ b/src/Icons/Abstract/EnterIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const EnterIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const EnterIcon = React.forwardRef( ); EnterIcon.displayName = 'EnterIcon'; EnterIcon.propTypes = {iconType: PropTypes.string}; -EnterIcon.defaultProps = {iconType: 'Abstract'}; - -export default EnterIcon; \ No newline at end of file +EnterIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ExclamationTriangleIcon.tsx b/src/Icons/Abstract/ExclamationTriangleIcon.tsx index c1cdff2a..a0bef870 100644 --- a/src/Icons/Abstract/ExclamationTriangleIcon.tsx +++ b/src/Icons/Abstract/ExclamationTriangleIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ExclamationTriangleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ExclamationTriangleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ExitFullScreenIcon = React.forwardRef( ); ExitFullScreenIcon.displayName = 'ExitFullScreenIcon'; ExitFullScreenIcon.propTypes = {iconType: PropTypes.string}; -ExitFullScreenIcon.defaultProps = {iconType: 'Abstract'}; - -export default ExitFullScreenIcon; \ No newline at end of file +ExitFullScreenIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ExitIcon.tsx b/src/Icons/Abstract/ExitIcon.tsx index 7dd4f099..e92b707e 100644 --- a/src/Icons/Abstract/ExitIcon.tsx +++ b/src/Icons/Abstract/ExitIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ExitIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ExitIcon = React.forwardRef( ); ExitIcon.displayName = 'ExitIcon'; ExitIcon.propTypes = {iconType: PropTypes.string}; -ExitIcon.defaultProps = {iconType: 'Abstract'}; - -export default ExitIcon; \ No newline at end of file +ExitIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ExternalLinkIcon.tsx b/src/Icons/Abstract/ExternalLinkIcon.tsx index 7268299f..f63fbe92 100644 --- a/src/Icons/Abstract/ExternalLinkIcon.tsx +++ b/src/Icons/Abstract/ExternalLinkIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ExternalLinkIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ExternalLinkIcon = React.forwardRef( ); ExternalLinkIcon.displayName = 'ExternalLinkIcon'; ExternalLinkIcon.propTypes = {iconType: PropTypes.string}; -ExternalLinkIcon.defaultProps = {iconType: 'Abstract'}; - -export default ExternalLinkIcon; \ No newline at end of file +ExternalLinkIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/Half1Icon.tsx b/src/Icons/Abstract/Half1Icon.tsx index 78e07e25..f31f5baa 100644 --- a/src/Icons/Abstract/Half1Icon.tsx +++ b/src/Icons/Abstract/Half1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Half1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Half1Icon = React.forwardRef( ); Half1Icon.displayName = 'Half1Icon'; Half1Icon.propTypes = {iconType: PropTypes.string}; -Half1Icon.defaultProps = {iconType: 'Abstract'}; - -export default Half1Icon; \ No newline at end of file +Half1Icon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/Half2Icon.tsx b/src/Icons/Abstract/Half2Icon.tsx index bfcc736e..a672ec71 100644 --- a/src/Icons/Abstract/Half2Icon.tsx +++ b/src/Icons/Abstract/Half2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Half2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Half2Icon = React.forwardRef( ); Half2Icon.displayName = 'Half2Icon'; Half2Icon.propTypes = {iconType: PropTypes.string}; -Half2Icon.defaultProps = {iconType: 'Abstract'}; - -export default Half2Icon; \ No newline at end of file +Half2Icon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/HamburgerMenuIcon.tsx b/src/Icons/Abstract/HamburgerMenuIcon.tsx index 4ea73399..d769f818 100644 --- a/src/Icons/Abstract/HamburgerMenuIcon.tsx +++ b/src/Icons/Abstract/HamburgerMenuIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const HamburgerMenuIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const HamburgerMenuIcon = React.forwardRef( ); HamburgerMenuIcon.displayName = 'HamburgerMenuIcon'; HamburgerMenuIcon.propTypes = {iconType: PropTypes.string}; -HamburgerMenuIcon.defaultProps = {iconType: 'Abstract'}; - -export default HamburgerMenuIcon; \ No newline at end of file +HamburgerMenuIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/InfoCircledIcon.tsx b/src/Icons/Abstract/InfoCircledIcon.tsx index 5fd239df..467d315a 100644 --- a/src/Icons/Abstract/InfoCircledIcon.tsx +++ b/src/Icons/Abstract/InfoCircledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const InfoCircledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const InfoCircledIcon = React.forwardRef( ); InfoCircledIcon.displayName = 'InfoCircledIcon'; InfoCircledIcon.propTypes = {iconType: PropTypes.string}; -InfoCircledIcon.defaultProps = {iconType: 'Abstract'}; - -export default InfoCircledIcon; \ No newline at end of file +InfoCircledIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/MinusCircledIcon.tsx b/src/Icons/Abstract/MinusCircledIcon.tsx index 86d40686..7d249553 100644 --- a/src/Icons/Abstract/MinusCircledIcon.tsx +++ b/src/Icons/Abstract/MinusCircledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MinusCircledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MinusCircledIcon = React.forwardRef( ); MinusCircledIcon.displayName = 'MinusCircledIcon'; MinusCircledIcon.propTypes = {iconType: PropTypes.string}; -MinusCircledIcon.defaultProps = {iconType: 'Abstract'}; - -export default MinusCircledIcon; \ No newline at end of file +MinusCircledIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/MinusIcon.tsx b/src/Icons/Abstract/MinusIcon.tsx index 37bdc302..a065d5d4 100644 --- a/src/Icons/Abstract/MinusIcon.tsx +++ b/src/Icons/Abstract/MinusIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MinusIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MinusIcon = React.forwardRef( ); MinusIcon.displayName = 'MinusIcon'; MinusIcon.propTypes = {iconType: PropTypes.string}; -MinusIcon.defaultProps = {iconType: 'Abstract'}; - -export default MinusIcon; \ No newline at end of file +MinusIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/OpenInNewWindowIcon.tsx b/src/Icons/Abstract/OpenInNewWindowIcon.tsx index 11a4da3c..fec62e39 100644 --- a/src/Icons/Abstract/OpenInNewWindowIcon.tsx +++ b/src/Icons/Abstract/OpenInNewWindowIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const OpenInNewWindowIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const OpenInNewWindowIcon = React.forwardRef( ); OpenInNewWindowIcon.displayName = 'OpenInNewWindowIcon'; OpenInNewWindowIcon.propTypes = {iconType: PropTypes.string}; -OpenInNewWindowIcon.defaultProps = {iconType: 'Abstract'}; - -export default OpenInNewWindowIcon; \ No newline at end of file +OpenInNewWindowIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/PlusCircledIcon.tsx b/src/Icons/Abstract/PlusCircledIcon.tsx index b564dbd0..d4edeaf9 100644 --- a/src/Icons/Abstract/PlusCircledIcon.tsx +++ b/src/Icons/Abstract/PlusCircledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PlusCircledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PlusCircledIcon = React.forwardRef( ); PlusCircledIcon.displayName = 'PlusCircledIcon'; PlusCircledIcon.propTypes = {iconType: PropTypes.string}; -PlusCircledIcon.defaultProps = {iconType: 'Abstract'}; - -export default PlusCircledIcon; \ No newline at end of file +PlusCircledIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/PlusIcon.tsx b/src/Icons/Abstract/PlusIcon.tsx index 493d85e6..6ec946f2 100644 --- a/src/Icons/Abstract/PlusIcon.tsx +++ b/src/Icons/Abstract/PlusIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PlusIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PlusIcon = React.forwardRef( ); PlusIcon.displayName = 'PlusIcon'; PlusIcon.propTypes = {iconType: PropTypes.string}; -PlusIcon.defaultProps = {iconType: 'Abstract'}; - -export default PlusIcon; \ No newline at end of file +PlusIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/QuestionMarkCircledIcon.tsx b/src/Icons/Abstract/QuestionMarkCircledIcon.tsx index 37592898..235708dc 100644 --- a/src/Icons/Abstract/QuestionMarkCircledIcon.tsx +++ b/src/Icons/Abstract/QuestionMarkCircledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const QuestionMarkCircledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const QuestionMarkCircledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const QuestionMarkIcon = React.forwardRef( ); QuestionMarkIcon.displayName = 'QuestionMarkIcon'; QuestionMarkIcon.propTypes = {iconType: PropTypes.string}; -QuestionMarkIcon.defaultProps = {iconType: 'Abstract'}; - -export default QuestionMarkIcon; \ No newline at end of file +QuestionMarkIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ReloadIcon.tsx b/src/Icons/Abstract/ReloadIcon.tsx index d2a04bec..9acd8590 100644 --- a/src/Icons/Abstract/ReloadIcon.tsx +++ b/src/Icons/Abstract/ReloadIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ReloadIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ReloadIcon = React.forwardRef( ); ReloadIcon.displayName = 'ReloadIcon'; ReloadIcon.propTypes = {iconType: PropTypes.string}; -ReloadIcon.defaultProps = {iconType: 'Abstract'}; - -export default ReloadIcon; \ No newline at end of file +ReloadIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ResetIcon.tsx b/src/Icons/Abstract/ResetIcon.tsx index 616e9fa7..28e9ea9f 100644 --- a/src/Icons/Abstract/ResetIcon.tsx +++ b/src/Icons/Abstract/ResetIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ResetIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ResetIcon = React.forwardRef( ); ResetIcon.displayName = 'ResetIcon'; ResetIcon.propTypes = {iconType: PropTypes.string}; -ResetIcon.defaultProps = {iconType: 'Abstract'}; - -export default ResetIcon; \ No newline at end of file +ResetIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/Share1Icon.tsx b/src/Icons/Abstract/Share1Icon.tsx index 367ae080..95db8c7a 100644 --- a/src/Icons/Abstract/Share1Icon.tsx +++ b/src/Icons/Abstract/Share1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Share1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Share1Icon = React.forwardRef( ); Share1Icon.displayName = 'Share1Icon'; Share1Icon.propTypes = {iconType: PropTypes.string}; -Share1Icon.defaultProps = {iconType: 'Abstract'}; - -export default Share1Icon; \ No newline at end of file +Share1Icon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/Share2Icon.tsx b/src/Icons/Abstract/Share2Icon.tsx index 16f3167b..9d7032f4 100644 --- a/src/Icons/Abstract/Share2Icon.tsx +++ b/src/Icons/Abstract/Share2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Share2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Share2Icon = React.forwardRef( ); Share2Icon.displayName = 'Share2Icon'; Share2Icon.propTypes = {iconType: PropTypes.string}; -Share2Icon.defaultProps = {iconType: 'Abstract'}; - -export default Share2Icon; \ No newline at end of file +Share2Icon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/SlashIcon.tsx b/src/Icons/Abstract/SlashIcon.tsx index 98bd4a97..0c981af5 100644 --- a/src/Icons/Abstract/SlashIcon.tsx +++ b/src/Icons/Abstract/SlashIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SlashIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SlashIcon = React.forwardRef( ); SlashIcon.displayName = 'SlashIcon'; SlashIcon.propTypes = {iconType: PropTypes.string}; -SlashIcon.defaultProps = {iconType: 'Abstract'}; - -export default SlashIcon; \ No newline at end of file +SlashIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/SquareIcon.tsx b/src/Icons/Abstract/SquareIcon.tsx index da69100c..b41529ab 100644 --- a/src/Icons/Abstract/SquareIcon.tsx +++ b/src/Icons/Abstract/SquareIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SquareIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SquareIcon = React.forwardRef( ); SquareIcon.displayName = 'SquareIcon'; SquareIcon.propTypes = {iconType: PropTypes.string}; -SquareIcon.defaultProps = {iconType: 'Abstract'}; - -export default SquareIcon; \ No newline at end of file +SquareIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/UpdateIcon.tsx b/src/Icons/Abstract/UpdateIcon.tsx index 70dd21ad..a7a21831 100644 --- a/src/Icons/Abstract/UpdateIcon.tsx +++ b/src/Icons/Abstract/UpdateIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const UpdateIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const UpdateIcon = React.forwardRef( ); UpdateIcon.displayName = 'UpdateIcon'; UpdateIcon.propTypes = {iconType: PropTypes.string}; -UpdateIcon.defaultProps = {iconType: 'Abstract'}; - -export default UpdateIcon; \ No newline at end of file +UpdateIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/UploadIcon.tsx b/src/Icons/Abstract/UploadIcon.tsx index 981d2291..d578c1fb 100644 --- a/src/Icons/Abstract/UploadIcon.tsx +++ b/src/Icons/Abstract/UploadIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const UploadIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const UploadIcon = React.forwardRef( ); UploadIcon.displayName = 'UploadIcon'; UploadIcon.propTypes = {iconType: PropTypes.string}; -UploadIcon.defaultProps = {iconType: 'Abstract'}; - -export default UploadIcon; \ No newline at end of file +UploadIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ViewGridIcon.tsx b/src/Icons/Abstract/ViewGridIcon.tsx index d4d752b8..416ab584 100644 --- a/src/Icons/Abstract/ViewGridIcon.tsx +++ b/src/Icons/Abstract/ViewGridIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ViewGridIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ViewGridIcon = React.forwardRef( ); ViewGridIcon.displayName = 'ViewGridIcon'; ViewGridIcon.propTypes = {iconType: PropTypes.string}; -ViewGridIcon.defaultProps = {iconType: 'Abstract'}; - -export default ViewGridIcon; \ No newline at end of file +ViewGridIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ViewHorizontalIcon.tsx b/src/Icons/Abstract/ViewHorizontalIcon.tsx index adbec90b..cbfef8de 100644 --- a/src/Icons/Abstract/ViewHorizontalIcon.tsx +++ b/src/Icons/Abstract/ViewHorizontalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ViewHorizontalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ViewHorizontalIcon = React.forwardRef( ); ViewHorizontalIcon.displayName = 'ViewHorizontalIcon'; ViewHorizontalIcon.propTypes = {iconType: PropTypes.string}; -ViewHorizontalIcon.defaultProps = {iconType: 'Abstract'}; - -export default ViewHorizontalIcon; \ No newline at end of file +ViewHorizontalIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ViewNoneIcon.tsx b/src/Icons/Abstract/ViewNoneIcon.tsx index 3559fdeb..3a717a91 100644 --- a/src/Icons/Abstract/ViewNoneIcon.tsx +++ b/src/Icons/Abstract/ViewNoneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ViewNoneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ViewNoneIcon = React.forwardRef( ); ViewNoneIcon.displayName = 'ViewNoneIcon'; ViewNoneIcon.propTypes = {iconType: PropTypes.string}; -ViewNoneIcon.defaultProps = {iconType: 'Abstract'}; - -export default ViewNoneIcon; \ No newline at end of file +ViewNoneIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Abstract/ViewVerticalIcon.tsx b/src/Icons/Abstract/ViewVerticalIcon.tsx index 1deec3c1..f54489a4 100644 --- a/src/Icons/Abstract/ViewVerticalIcon.tsx +++ b/src/Icons/Abstract/ViewVerticalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ViewVerticalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Abstract', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ViewVerticalIcon = React.forwardRef( ); ViewVerticalIcon.displayName = 'ViewVerticalIcon'; ViewVerticalIcon.propTypes = {iconType: PropTypes.string}; -ViewVerticalIcon.defaultProps = {iconType: 'Abstract'}; - -export default ViewVerticalIcon; \ No newline at end of file +ViewVerticalIcon.defaultProps = {iconType: 'Abstract'}; \ No newline at end of file diff --git a/src/Icons/Alignment/AlignBottomIcon.tsx b/src/Icons/Alignment/AlignBottomIcon.tsx index 672e698a..334d4951 100644 --- a/src/Icons/Alignment/AlignBottomIcon.tsx +++ b/src/Icons/Alignment/AlignBottomIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AlignBottomIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AlignBottomIcon = React.forwardRef( ); AlignBottomIcon.displayName = 'AlignBottomIcon'; AlignBottomIcon.propTypes = {iconType: PropTypes.string}; -AlignBottomIcon.defaultProps = {iconType: 'Alignment'}; - -export default AlignBottomIcon; \ No newline at end of file +AlignBottomIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Alignment/AlignCenterHorizontallyIcon.tsx b/src/Icons/Alignment/AlignCenterHorizontallyIcon.tsx index a1afb738..57cd4987 100644 --- a/src/Icons/Alignment/AlignCenterHorizontallyIcon.tsx +++ b/src/Icons/Alignment/AlignCenterHorizontallyIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AlignCenterHorizontallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AlignCenterHorizontallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AlignCenterVerticallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AlignLeftIcon = React.forwardRef( ); AlignLeftIcon.displayName = 'AlignLeftIcon'; AlignLeftIcon.propTypes = {iconType: PropTypes.string}; -AlignLeftIcon.defaultProps = {iconType: 'Alignment'}; - -export default AlignLeftIcon; \ No newline at end of file +AlignLeftIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Alignment/AlignRightIcon.tsx b/src/Icons/Alignment/AlignRightIcon.tsx index 6473b457..713299e7 100644 --- a/src/Icons/Alignment/AlignRightIcon.tsx +++ b/src/Icons/Alignment/AlignRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AlignRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AlignRightIcon = React.forwardRef( ); AlignRightIcon.displayName = 'AlignRightIcon'; AlignRightIcon.propTypes = {iconType: PropTypes.string}; -AlignRightIcon.defaultProps = {iconType: 'Alignment'}; - -export default AlignRightIcon; \ No newline at end of file +AlignRightIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Alignment/AlignTopIcon.tsx b/src/Icons/Alignment/AlignTopIcon.tsx index 020fef30..76269948 100644 --- a/src/Icons/Alignment/AlignTopIcon.tsx +++ b/src/Icons/Alignment/AlignTopIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AlignTopIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AlignTopIcon = React.forwardRef( ); AlignTopIcon.displayName = 'AlignTopIcon'; AlignTopIcon.propTypes = {iconType: PropTypes.string}; -AlignTopIcon.defaultProps = {iconType: 'Alignment'}; - -export default AlignTopIcon; \ No newline at end of file +AlignTopIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Alignment/PinBottomIcon.tsx b/src/Icons/Alignment/PinBottomIcon.tsx index 123bc727..01f77022 100644 --- a/src/Icons/Alignment/PinBottomIcon.tsx +++ b/src/Icons/Alignment/PinBottomIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PinBottomIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PinBottomIcon = React.forwardRef( ); PinBottomIcon.displayName = 'PinBottomIcon'; PinBottomIcon.propTypes = {iconType: PropTypes.string}; -PinBottomIcon.defaultProps = {iconType: 'Alignment'}; - -export default PinBottomIcon; \ No newline at end of file +PinBottomIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Alignment/PinLeftIcon.tsx b/src/Icons/Alignment/PinLeftIcon.tsx index f4d9fc04..eb9c70f4 100644 --- a/src/Icons/Alignment/PinLeftIcon.tsx +++ b/src/Icons/Alignment/PinLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PinLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PinLeftIcon = React.forwardRef( ); PinLeftIcon.displayName = 'PinLeftIcon'; PinLeftIcon.propTypes = {iconType: PropTypes.string}; -PinLeftIcon.defaultProps = {iconType: 'Alignment'}; - -export default PinLeftIcon; \ No newline at end of file +PinLeftIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Alignment/PinRightIcon.tsx b/src/Icons/Alignment/PinRightIcon.tsx index 71b09128..e0ce41d8 100644 --- a/src/Icons/Alignment/PinRightIcon.tsx +++ b/src/Icons/Alignment/PinRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PinRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PinRightIcon = React.forwardRef( ); PinRightIcon.displayName = 'PinRightIcon'; PinRightIcon.propTypes = {iconType: PropTypes.string}; -PinRightIcon.defaultProps = {iconType: 'Alignment'}; - -export default PinRightIcon; \ No newline at end of file +PinRightIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Alignment/PinTopIcon.tsx b/src/Icons/Alignment/PinTopIcon.tsx index a9a589e5..c1c573c8 100644 --- a/src/Icons/Alignment/PinTopIcon.tsx +++ b/src/Icons/Alignment/PinTopIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PinTopIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PinTopIcon = React.forwardRef( ); PinTopIcon.displayName = 'PinTopIcon'; PinTopIcon.propTypes = {iconType: PropTypes.string}; -PinTopIcon.defaultProps = {iconType: 'Alignment'}; - -export default PinTopIcon; \ No newline at end of file +PinTopIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Alignment/SpaceBetweenHorizontallyIcon.tsx b/src/Icons/Alignment/SpaceBetweenHorizontallyIcon.tsx index 5c2d975f..f6e7c72a 100644 --- a/src/Icons/Alignment/SpaceBetweenHorizontallyIcon.tsx +++ b/src/Icons/Alignment/SpaceBetweenHorizontallyIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SpaceBetweenHorizontallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpaceBetweenHorizontallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpaceBetweenVerticallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpaceEvenlyHorizontallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpaceEvenlyVerticallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StretchHorizontallyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Alignment', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StretchVerticallyIcon = React.forwardRef( ); StretchVerticallyIcon.displayName = 'StretchVerticallyIcon'; StretchVerticallyIcon.propTypes = {iconType: PropTypes.string}; -StretchVerticallyIcon.defaultProps = {iconType: 'Alignment'}; - -export default StretchVerticallyIcon; \ No newline at end of file +StretchVerticallyIcon.defaultProps = {iconType: 'Alignment'}; \ No newline at end of file diff --git a/src/Icons/Arrows/AllSidesIcon.tsx b/src/Icons/Arrows/AllSidesIcon.tsx index 2a7d703f..21371ee4 100644 --- a/src/Icons/Arrows/AllSidesIcon.tsx +++ b/src/Icons/Arrows/AllSidesIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AllSidesIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AllSidesIcon = React.forwardRef( ); AllSidesIcon.displayName = 'AllSidesIcon'; AllSidesIcon.propTypes = {iconType: PropTypes.string}; -AllSidesIcon.defaultProps = {iconType: 'Arrows'}; - -export default AllSidesIcon; \ No newline at end of file +AllSidesIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ArrowBottomLeftIcon.tsx b/src/Icons/Arrows/ArrowBottomLeftIcon.tsx index 79698743..62403f77 100644 --- a/src/Icons/Arrows/ArrowBottomLeftIcon.tsx +++ b/src/Icons/Arrows/ArrowBottomLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArrowBottomLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArrowBottomLeftIcon = React.forwardRef( ); ArrowBottomLeftIcon.displayName = 'ArrowBottomLeftIcon'; ArrowBottomLeftIcon.propTypes = {iconType: PropTypes.string}; -ArrowBottomLeftIcon.defaultProps = {iconType: 'Arrows'}; - -export default ArrowBottomLeftIcon; \ No newline at end of file +ArrowBottomLeftIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ArrowBottomRightIcon.tsx b/src/Icons/Arrows/ArrowBottomRightIcon.tsx index af6c4400..136549c9 100644 --- a/src/Icons/Arrows/ArrowBottomRightIcon.tsx +++ b/src/Icons/Arrows/ArrowBottomRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArrowBottomRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArrowBottomRightIcon = React.forwardRef( ); ArrowBottomRightIcon.displayName = 'ArrowBottomRightIcon'; ArrowBottomRightIcon.propTypes = {iconType: PropTypes.string}; -ArrowBottomRightIcon.defaultProps = {iconType: 'Arrows'}; - -export default ArrowBottomRightIcon; \ No newline at end of file +ArrowBottomRightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ArrowDownIcon.tsx b/src/Icons/Arrows/ArrowDownIcon.tsx index 3e711a6d..8f30c79a 100644 --- a/src/Icons/Arrows/ArrowDownIcon.tsx +++ b/src/Icons/Arrows/ArrowDownIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArrowDownIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArrowDownIcon = React.forwardRef( ); ArrowDownIcon.displayName = 'ArrowDownIcon'; ArrowDownIcon.propTypes = {iconType: PropTypes.string}; -ArrowDownIcon.defaultProps = {iconType: 'Arrows'}; - -export default ArrowDownIcon; \ No newline at end of file +ArrowDownIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ArrowLeftIcon.tsx b/src/Icons/Arrows/ArrowLeftIcon.tsx index 1f1d09c9..ab943705 100644 --- a/src/Icons/Arrows/ArrowLeftIcon.tsx +++ b/src/Icons/Arrows/ArrowLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArrowLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArrowLeftIcon = React.forwardRef( ); ArrowLeftIcon.displayName = 'ArrowLeftIcon'; ArrowLeftIcon.propTypes = {iconType: PropTypes.string}; -ArrowLeftIcon.defaultProps = {iconType: 'Arrows'}; - -export default ArrowLeftIcon; \ No newline at end of file +ArrowLeftIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ArrowRightIcon.tsx b/src/Icons/Arrows/ArrowRightIcon.tsx index 9e5ffdf3..48c206c7 100644 --- a/src/Icons/Arrows/ArrowRightIcon.tsx +++ b/src/Icons/Arrows/ArrowRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArrowRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArrowRightIcon = React.forwardRef( ); ArrowRightIcon.displayName = 'ArrowRightIcon'; ArrowRightIcon.propTypes = {iconType: PropTypes.string}; -ArrowRightIcon.defaultProps = {iconType: 'Arrows'}; - -export default ArrowRightIcon; \ No newline at end of file +ArrowRightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ArrowTopLeftIcon.tsx b/src/Icons/Arrows/ArrowTopLeftIcon.tsx index 3b04d4e1..96c8ede6 100644 --- a/src/Icons/Arrows/ArrowTopLeftIcon.tsx +++ b/src/Icons/Arrows/ArrowTopLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArrowTopLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArrowTopLeftIcon = React.forwardRef( ); ArrowTopLeftIcon.displayName = 'ArrowTopLeftIcon'; ArrowTopLeftIcon.propTypes = {iconType: PropTypes.string}; -ArrowTopLeftIcon.defaultProps = {iconType: 'Arrows'}; - -export default ArrowTopLeftIcon; \ No newline at end of file +ArrowTopLeftIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ArrowTopRightIcon.tsx b/src/Icons/Arrows/ArrowTopRightIcon.tsx index 29eb876d..9320c686 100644 --- a/src/Icons/Arrows/ArrowTopRightIcon.tsx +++ b/src/Icons/Arrows/ArrowTopRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArrowTopRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArrowTopRightIcon = React.forwardRef( ); ArrowTopRightIcon.displayName = 'ArrowTopRightIcon'; ArrowTopRightIcon.propTypes = {iconType: PropTypes.string}; -ArrowTopRightIcon.defaultProps = {iconType: 'Arrows'}; - -export default ArrowTopRightIcon; \ No newline at end of file +ArrowTopRightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ArrowUpIcon.tsx b/src/Icons/Arrows/ArrowUpIcon.tsx index af6952e6..4ad111e3 100644 --- a/src/Icons/Arrows/ArrowUpIcon.tsx +++ b/src/Icons/Arrows/ArrowUpIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArrowUpIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArrowUpIcon = React.forwardRef( ); ArrowUpIcon.displayName = 'ArrowUpIcon'; ArrowUpIcon.propTypes = {iconType: PropTypes.string}; -ArrowUpIcon.defaultProps = {iconType: 'Arrows'}; - -export default ArrowUpIcon; \ No newline at end of file +ArrowUpIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/CaretDownIcon.tsx b/src/Icons/Arrows/CaretDownIcon.tsx index 93786c20..6d2fc049 100644 --- a/src/Icons/Arrows/CaretDownIcon.tsx +++ b/src/Icons/Arrows/CaretDownIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CaretDownIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CaretDownIcon = React.forwardRef( ); CaretDownIcon.displayName = 'CaretDownIcon'; CaretDownIcon.propTypes = {iconType: PropTypes.string}; -CaretDownIcon.defaultProps = {iconType: 'Arrows'}; - -export default CaretDownIcon; \ No newline at end of file +CaretDownIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/CaretLeftIcon.tsx b/src/Icons/Arrows/CaretLeftIcon.tsx index e2e0fa63..046adcd4 100644 --- a/src/Icons/Arrows/CaretLeftIcon.tsx +++ b/src/Icons/Arrows/CaretLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CaretLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CaretLeftIcon = React.forwardRef( ); CaretLeftIcon.displayName = 'CaretLeftIcon'; CaretLeftIcon.propTypes = {iconType: PropTypes.string}; -CaretLeftIcon.defaultProps = {iconType: 'Arrows'}; - -export default CaretLeftIcon; \ No newline at end of file +CaretLeftIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/CaretRightIcon.tsx b/src/Icons/Arrows/CaretRightIcon.tsx index 1417c343..2005068a 100644 --- a/src/Icons/Arrows/CaretRightIcon.tsx +++ b/src/Icons/Arrows/CaretRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CaretRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CaretRightIcon = React.forwardRef( ); CaretRightIcon.displayName = 'CaretRightIcon'; CaretRightIcon.propTypes = {iconType: PropTypes.string}; -CaretRightIcon.defaultProps = {iconType: 'Arrows'}; - -export default CaretRightIcon; \ No newline at end of file +CaretRightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/CaretSortIcon.tsx b/src/Icons/Arrows/CaretSortIcon.tsx index 59656576..e1f483cf 100644 --- a/src/Icons/Arrows/CaretSortIcon.tsx +++ b/src/Icons/Arrows/CaretSortIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CaretSortIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CaretSortIcon = React.forwardRef( ); CaretSortIcon.displayName = 'CaretSortIcon'; CaretSortIcon.propTypes = {iconType: PropTypes.string}; -CaretSortIcon.defaultProps = {iconType: 'Arrows'}; - -export default CaretSortIcon; \ No newline at end of file +CaretSortIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/CaretUpIcon.tsx b/src/Icons/Arrows/CaretUpIcon.tsx index 074f2234..da0f8803 100644 --- a/src/Icons/Arrows/CaretUpIcon.tsx +++ b/src/Icons/Arrows/CaretUpIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CaretUpIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CaretUpIcon = React.forwardRef( ); CaretUpIcon.displayName = 'CaretUpIcon'; CaretUpIcon.propTypes = {iconType: PropTypes.string}; -CaretUpIcon.defaultProps = {iconType: 'Arrows'}; - -export default CaretUpIcon; \ No newline at end of file +CaretUpIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ChevronDownIcon.tsx b/src/Icons/Arrows/ChevronDownIcon.tsx index cb9048e7..a4899240 100644 --- a/src/Icons/Arrows/ChevronDownIcon.tsx +++ b/src/Icons/Arrows/ChevronDownIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ChevronDownIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ChevronDownIcon = React.forwardRef( ); ChevronDownIcon.displayName = 'ChevronDownIcon'; ChevronDownIcon.propTypes = {iconType: PropTypes.string}; -ChevronDownIcon.defaultProps = {iconType: 'Arrows'}; - -export default ChevronDownIcon; \ No newline at end of file +ChevronDownIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ChevronLeftIcon.tsx b/src/Icons/Arrows/ChevronLeftIcon.tsx index 1bd47c67..c1893285 100644 --- a/src/Icons/Arrows/ChevronLeftIcon.tsx +++ b/src/Icons/Arrows/ChevronLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ChevronLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ChevronLeftIcon = React.forwardRef( ); ChevronLeftIcon.displayName = 'ChevronLeftIcon'; ChevronLeftIcon.propTypes = {iconType: PropTypes.string}; -ChevronLeftIcon.defaultProps = {iconType: 'Arrows'}; - -export default ChevronLeftIcon; \ No newline at end of file +ChevronLeftIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ChevronRightIcon.tsx b/src/Icons/Arrows/ChevronRightIcon.tsx index 813a3ff9..2f868c33 100644 --- a/src/Icons/Arrows/ChevronRightIcon.tsx +++ b/src/Icons/Arrows/ChevronRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ChevronRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ChevronRightIcon = React.forwardRef( ); ChevronRightIcon.displayName = 'ChevronRightIcon'; ChevronRightIcon.propTypes = {iconType: PropTypes.string}; -ChevronRightIcon.defaultProps = {iconType: 'Arrows'}; - -export default ChevronRightIcon; \ No newline at end of file +ChevronRightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ChevronUpIcon.tsx b/src/Icons/Arrows/ChevronUpIcon.tsx index 3a953da9..fcc92c11 100644 --- a/src/Icons/Arrows/ChevronUpIcon.tsx +++ b/src/Icons/Arrows/ChevronUpIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ChevronUpIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ChevronUpIcon = React.forwardRef( ); ChevronUpIcon.displayName = 'ChevronUpIcon'; ChevronUpIcon.propTypes = {iconType: PropTypes.string}; -ChevronUpIcon.defaultProps = {iconType: 'Arrows'}; - -export default ChevronUpIcon; \ No newline at end of file +ChevronUpIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/DoubleArrowDownIcon.tsx b/src/Icons/Arrows/DoubleArrowDownIcon.tsx index 4be60738..a934326a 100644 --- a/src/Icons/Arrows/DoubleArrowDownIcon.tsx +++ b/src/Icons/Arrows/DoubleArrowDownIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DoubleArrowDownIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DoubleArrowDownIcon = React.forwardRef( ); DoubleArrowDownIcon.displayName = 'DoubleArrowDownIcon'; DoubleArrowDownIcon.propTypes = {iconType: PropTypes.string}; -DoubleArrowDownIcon.defaultProps = {iconType: 'Arrows'}; - -export default DoubleArrowDownIcon; \ No newline at end of file +DoubleArrowDownIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/DoubleArrowLeftIcon.tsx b/src/Icons/Arrows/DoubleArrowLeftIcon.tsx index 01f64207..1abfb593 100644 --- a/src/Icons/Arrows/DoubleArrowLeftIcon.tsx +++ b/src/Icons/Arrows/DoubleArrowLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DoubleArrowLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DoubleArrowLeftIcon = React.forwardRef( ); DoubleArrowLeftIcon.displayName = 'DoubleArrowLeftIcon'; DoubleArrowLeftIcon.propTypes = {iconType: PropTypes.string}; -DoubleArrowLeftIcon.defaultProps = {iconType: 'Arrows'}; - -export default DoubleArrowLeftIcon; \ No newline at end of file +DoubleArrowLeftIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/DoubleArrowRightIcon.tsx b/src/Icons/Arrows/DoubleArrowRightIcon.tsx index 7280a3c4..947cc171 100644 --- a/src/Icons/Arrows/DoubleArrowRightIcon.tsx +++ b/src/Icons/Arrows/DoubleArrowRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DoubleArrowRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DoubleArrowRightIcon = React.forwardRef( ); DoubleArrowRightIcon.displayName = 'DoubleArrowRightIcon'; DoubleArrowRightIcon.propTypes = {iconType: PropTypes.string}; -DoubleArrowRightIcon.defaultProps = {iconType: 'Arrows'}; - -export default DoubleArrowRightIcon; \ No newline at end of file +DoubleArrowRightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/DoubleArrowUpIcon.tsx b/src/Icons/Arrows/DoubleArrowUpIcon.tsx index aa305a71..d84e593f 100644 --- a/src/Icons/Arrows/DoubleArrowUpIcon.tsx +++ b/src/Icons/Arrows/DoubleArrowUpIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DoubleArrowUpIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DoubleArrowUpIcon = React.forwardRef( ); DoubleArrowUpIcon.displayName = 'DoubleArrowUpIcon'; DoubleArrowUpIcon.propTypes = {iconType: PropTypes.string}; -DoubleArrowUpIcon.defaultProps = {iconType: 'Arrows'}; - -export default DoubleArrowUpIcon; \ No newline at end of file +DoubleArrowUpIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/HeightIcon.tsx b/src/Icons/Arrows/HeightIcon.tsx index 3a3555f7..aa4b7dcb 100644 --- a/src/Icons/Arrows/HeightIcon.tsx +++ b/src/Icons/Arrows/HeightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const HeightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const HeightIcon = React.forwardRef( ); HeightIcon.displayName = 'HeightIcon'; HeightIcon.propTypes = {iconType: PropTypes.string}; -HeightIcon.defaultProps = {iconType: 'Arrows'}; - -export default HeightIcon; \ No newline at end of file +HeightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/MoveIcon.tsx b/src/Icons/Arrows/MoveIcon.tsx index 5fc78677..43b57172 100644 --- a/src/Icons/Arrows/MoveIcon.tsx +++ b/src/Icons/Arrows/MoveIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MoveIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MoveIcon = React.forwardRef( ); MoveIcon.displayName = 'MoveIcon'; MoveIcon.propTypes = {iconType: PropTypes.string}; -MoveIcon.defaultProps = {iconType: 'Arrows'}; - -export default MoveIcon; \ No newline at end of file +MoveIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/SizeIcon.tsx b/src/Icons/Arrows/SizeIcon.tsx index baf48a3a..7d1133ea 100644 --- a/src/Icons/Arrows/SizeIcon.tsx +++ b/src/Icons/Arrows/SizeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SizeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SizeIcon = React.forwardRef( ); SizeIcon.displayName = 'SizeIcon'; SizeIcon.propTypes = {iconType: PropTypes.string}; -SizeIcon.defaultProps = {iconType: 'Arrows'}; - -export default SizeIcon; \ No newline at end of file +SizeIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ThickArrowDownIcon.tsx b/src/Icons/Arrows/ThickArrowDownIcon.tsx index 50b15673..5fef618b 100644 --- a/src/Icons/Arrows/ThickArrowDownIcon.tsx +++ b/src/Icons/Arrows/ThickArrowDownIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ThickArrowDownIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ThickArrowDownIcon = React.forwardRef( ); ThickArrowDownIcon.displayName = 'ThickArrowDownIcon'; ThickArrowDownIcon.propTypes = {iconType: PropTypes.string}; -ThickArrowDownIcon.defaultProps = {iconType: 'Arrows'}; - -export default ThickArrowDownIcon; \ No newline at end of file +ThickArrowDownIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ThickArrowLeftIcon.tsx b/src/Icons/Arrows/ThickArrowLeftIcon.tsx index 09a41572..6fa3167e 100644 --- a/src/Icons/Arrows/ThickArrowLeftIcon.tsx +++ b/src/Icons/Arrows/ThickArrowLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ThickArrowLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ThickArrowLeftIcon = React.forwardRef( ); ThickArrowLeftIcon.displayName = 'ThickArrowLeftIcon'; ThickArrowLeftIcon.propTypes = {iconType: PropTypes.string}; -ThickArrowLeftIcon.defaultProps = {iconType: 'Arrows'}; - -export default ThickArrowLeftIcon; \ No newline at end of file +ThickArrowLeftIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ThickArrowRightIcon.tsx b/src/Icons/Arrows/ThickArrowRightIcon.tsx index e6baf504..5469a45c 100644 --- a/src/Icons/Arrows/ThickArrowRightIcon.tsx +++ b/src/Icons/Arrows/ThickArrowRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ThickArrowRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ThickArrowRightIcon = React.forwardRef( ); ThickArrowRightIcon.displayName = 'ThickArrowRightIcon'; ThickArrowRightIcon.propTypes = {iconType: PropTypes.string}; -ThickArrowRightIcon.defaultProps = {iconType: 'Arrows'}; - -export default ThickArrowRightIcon; \ No newline at end of file +ThickArrowRightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/ThickArrowUpIcon.tsx b/src/Icons/Arrows/ThickArrowUpIcon.tsx index 7e572945..17d4b54e 100644 --- a/src/Icons/Arrows/ThickArrowUpIcon.tsx +++ b/src/Icons/Arrows/ThickArrowUpIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ThickArrowUpIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ThickArrowUpIcon = React.forwardRef( ); ThickArrowUpIcon.displayName = 'ThickArrowUpIcon'; ThickArrowUpIcon.propTypes = {iconType: PropTypes.string}; -ThickArrowUpIcon.defaultProps = {iconType: 'Arrows'}; - -export default ThickArrowUpIcon; \ No newline at end of file +ThickArrowUpIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/TriangleDownIcon.tsx b/src/Icons/Arrows/TriangleDownIcon.tsx index defe7c85..3f6fe439 100644 --- a/src/Icons/Arrows/TriangleDownIcon.tsx +++ b/src/Icons/Arrows/TriangleDownIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TriangleDownIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TriangleDownIcon = React.forwardRef( ); TriangleDownIcon.displayName = 'TriangleDownIcon'; TriangleDownIcon.propTypes = {iconType: PropTypes.string}; -TriangleDownIcon.defaultProps = {iconType: 'Arrows'}; - -export default TriangleDownIcon; \ No newline at end of file +TriangleDownIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/TriangleLeftIcon.tsx b/src/Icons/Arrows/TriangleLeftIcon.tsx index cf270530..78172f14 100644 --- a/src/Icons/Arrows/TriangleLeftIcon.tsx +++ b/src/Icons/Arrows/TriangleLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TriangleLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TriangleLeftIcon = React.forwardRef( ); TriangleLeftIcon.displayName = 'TriangleLeftIcon'; TriangleLeftIcon.propTypes = {iconType: PropTypes.string}; -TriangleLeftIcon.defaultProps = {iconType: 'Arrows'}; - -export default TriangleLeftIcon; \ No newline at end of file +TriangleLeftIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/TriangleRightIcon.tsx b/src/Icons/Arrows/TriangleRightIcon.tsx index 3f698d6e..87a8d8ce 100644 --- a/src/Icons/Arrows/TriangleRightIcon.tsx +++ b/src/Icons/Arrows/TriangleRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TriangleRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TriangleRightIcon = React.forwardRef( ); TriangleRightIcon.displayName = 'TriangleRightIcon'; TriangleRightIcon.propTypes = {iconType: PropTypes.string}; -TriangleRightIcon.defaultProps = {iconType: 'Arrows'}; - -export default TriangleRightIcon; \ No newline at end of file +TriangleRightIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/TriangleUpIcon.tsx b/src/Icons/Arrows/TriangleUpIcon.tsx index d6745f47..8e413100 100644 --- a/src/Icons/Arrows/TriangleUpIcon.tsx +++ b/src/Icons/Arrows/TriangleUpIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TriangleUpIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TriangleUpIcon = React.forwardRef( ); TriangleUpIcon.displayName = 'TriangleUpIcon'; TriangleUpIcon.propTypes = {iconType: PropTypes.string}; -TriangleUpIcon.defaultProps = {iconType: 'Arrows'}; - -export default TriangleUpIcon; \ No newline at end of file +TriangleUpIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Arrows/WidthIcon.tsx b/src/Icons/Arrows/WidthIcon.tsx index 661e19bd..f28b3c11 100644 --- a/src/Icons/Arrows/WidthIcon.tsx +++ b/src/Icons/Arrows/WidthIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const WidthIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Arrows', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const WidthIcon = React.forwardRef( ); WidthIcon.displayName = 'WidthIcon'; WidthIcon.propTypes = {iconType: PropTypes.string}; -WidthIcon.defaultProps = {iconType: 'Arrows'}; - -export default WidthIcon; \ No newline at end of file +WidthIcon.defaultProps = {iconType: 'Arrows'}; \ No newline at end of file diff --git a/src/Icons/Borders/BorderAllIcon.tsx b/src/Icons/Borders/BorderAllIcon.tsx index 0c05e666..747deb3e 100644 --- a/src/Icons/Borders/BorderAllIcon.tsx +++ b/src/Icons/Borders/BorderAllIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BorderAllIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Borders', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BorderAllIcon = React.forwardRef( ); BorderAllIcon.displayName = 'BorderAllIcon'; BorderAllIcon.propTypes = {iconType: PropTypes.string}; -BorderAllIcon.defaultProps = {iconType: 'Borders'}; - -export default BorderAllIcon; \ No newline at end of file +BorderAllIcon.defaultProps = {iconType: 'Borders'}; \ No newline at end of file diff --git a/src/Icons/Borders/BorderBottomIcon.tsx b/src/Icons/Borders/BorderBottomIcon.tsx index 5d98062b..a922c66b 100644 --- a/src/Icons/Borders/BorderBottomIcon.tsx +++ b/src/Icons/Borders/BorderBottomIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BorderBottomIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Borders', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BorderBottomIcon = React.forwardRef( ); BorderBottomIcon.displayName = 'BorderBottomIcon'; BorderBottomIcon.propTypes = {iconType: PropTypes.string}; -BorderBottomIcon.defaultProps = {iconType: 'Borders'}; - -export default BorderBottomIcon; \ No newline at end of file +BorderBottomIcon.defaultProps = {iconType: 'Borders'}; \ No newline at end of file diff --git a/src/Icons/Borders/BorderLeftIcon.tsx b/src/Icons/Borders/BorderLeftIcon.tsx index 61fcf598..1592790a 100644 --- a/src/Icons/Borders/BorderLeftIcon.tsx +++ b/src/Icons/Borders/BorderLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BorderLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Borders', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BorderLeftIcon = React.forwardRef( ); BorderLeftIcon.displayName = 'BorderLeftIcon'; BorderLeftIcon.propTypes = {iconType: PropTypes.string}; -BorderLeftIcon.defaultProps = {iconType: 'Borders'}; - -export default BorderLeftIcon; \ No newline at end of file +BorderLeftIcon.defaultProps = {iconType: 'Borders'}; \ No newline at end of file diff --git a/src/Icons/Borders/BorderNoneIcon.tsx b/src/Icons/Borders/BorderNoneIcon.tsx index 11cb74de..04dd50d1 100644 --- a/src/Icons/Borders/BorderNoneIcon.tsx +++ b/src/Icons/Borders/BorderNoneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BorderNoneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Borders', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BorderNoneIcon = React.forwardRef( ); BorderNoneIcon.displayName = 'BorderNoneIcon'; BorderNoneIcon.propTypes = {iconType: PropTypes.string}; -BorderNoneIcon.defaultProps = {iconType: 'Borders'}; - -export default BorderNoneIcon; \ No newline at end of file +BorderNoneIcon.defaultProps = {iconType: 'Borders'}; \ No newline at end of file diff --git a/src/Icons/Borders/BorderRightIcon.tsx b/src/Icons/Borders/BorderRightIcon.tsx index 8af2f051..2a8a5468 100644 --- a/src/Icons/Borders/BorderRightIcon.tsx +++ b/src/Icons/Borders/BorderRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BorderRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Borders', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BorderRightIcon = React.forwardRef( ); BorderRightIcon.displayName = 'BorderRightIcon'; BorderRightIcon.propTypes = {iconType: PropTypes.string}; -BorderRightIcon.defaultProps = {iconType: 'Borders'}; - -export default BorderRightIcon; \ No newline at end of file +BorderRightIcon.defaultProps = {iconType: 'Borders'}; \ No newline at end of file diff --git a/src/Icons/Borders/BorderSplitIcon.tsx b/src/Icons/Borders/BorderSplitIcon.tsx index bc0d88cd..a88caf91 100644 --- a/src/Icons/Borders/BorderSplitIcon.tsx +++ b/src/Icons/Borders/BorderSplitIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BorderSplitIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Borders', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BorderSplitIcon = React.forwardRef( ); BorderSplitIcon.displayName = 'BorderSplitIcon'; BorderSplitIcon.propTypes = {iconType: PropTypes.string}; -BorderSplitIcon.defaultProps = {iconType: 'Borders'}; - -export default BorderSplitIcon; \ No newline at end of file +BorderSplitIcon.defaultProps = {iconType: 'Borders'}; \ No newline at end of file diff --git a/src/Icons/Borders/BorderStyleIcon.tsx b/src/Icons/Borders/BorderStyleIcon.tsx index e2fd828a..9ed970e4 100644 --- a/src/Icons/Borders/BorderStyleIcon.tsx +++ b/src/Icons/Borders/BorderStyleIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BorderStyleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Borders', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BorderStyleIcon = React.forwardRef( ); BorderStyleIcon.displayName = 'BorderStyleIcon'; BorderStyleIcon.propTypes = {iconType: PropTypes.string}; -BorderStyleIcon.defaultProps = {iconType: 'Borders'}; - -export default BorderStyleIcon; \ No newline at end of file +BorderStyleIcon.defaultProps = {iconType: 'Borders'}; \ No newline at end of file diff --git a/src/Icons/Borders/BorderTopIcon.tsx b/src/Icons/Borders/BorderTopIcon.tsx index d20d8010..38d9f4d4 100644 --- a/src/Icons/Borders/BorderTopIcon.tsx +++ b/src/Icons/Borders/BorderTopIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BorderTopIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Borders', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BorderTopIcon = React.forwardRef( ); BorderTopIcon.displayName = 'BorderTopIcon'; BorderTopIcon.propTypes = {iconType: PropTypes.string}; -BorderTopIcon.defaultProps = {iconType: 'Borders'}; - -export default BorderTopIcon; \ No newline at end of file +BorderTopIcon.defaultProps = {iconType: 'Borders'}; \ No newline at end of file diff --git a/src/Icons/Components/ActivityLogIcon.tsx b/src/Icons/Components/ActivityLogIcon.tsx index 5f89ef05..88912e17 100644 --- a/src/Icons/Components/ActivityLogIcon.tsx +++ b/src/Icons/Components/ActivityLogIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ActivityLogIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ActivityLogIcon = React.forwardRef( ); ActivityLogIcon.displayName = 'ActivityLogIcon'; ActivityLogIcon.propTypes = {iconType: PropTypes.string}; -ActivityLogIcon.defaultProps = {iconType: 'Components'}; - -export default ActivityLogIcon; \ No newline at end of file +ActivityLogIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/AspectRatioIcon.tsx b/src/Icons/Components/AspectRatioIcon.tsx index ba87275b..71e04e42 100644 --- a/src/Icons/Components/AspectRatioIcon.tsx +++ b/src/Icons/Components/AspectRatioIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AspectRatioIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AspectRatioIcon = React.forwardRef( ); AspectRatioIcon.displayName = 'AspectRatioIcon'; AspectRatioIcon.propTypes = {iconType: PropTypes.string}; -AspectRatioIcon.defaultProps = {iconType: 'Components'}; - -export default AspectRatioIcon; \ No newline at end of file +AspectRatioIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/AvatarIcon.tsx b/src/Icons/Components/AvatarIcon.tsx index 3bdc427a..2d0a7371 100644 --- a/src/Icons/Components/AvatarIcon.tsx +++ b/src/Icons/Components/AvatarIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AvatarIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AvatarIcon = React.forwardRef( ); AvatarIcon.displayName = 'AvatarIcon'; AvatarIcon.propTypes = {iconType: PropTypes.string}; -AvatarIcon.defaultProps = {iconType: 'Components'}; - -export default AvatarIcon; \ No newline at end of file +AvatarIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/BadgeIcon.tsx b/src/Icons/Components/BadgeIcon.tsx index d4438925..c46315f9 100644 --- a/src/Icons/Components/BadgeIcon.tsx +++ b/src/Icons/Components/BadgeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BadgeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BadgeIcon = React.forwardRef( ); BadgeIcon.displayName = 'BadgeIcon'; BadgeIcon.propTypes = {iconType: PropTypes.string}; -BadgeIcon.defaultProps = {iconType: 'Components'}; - -export default BadgeIcon; \ No newline at end of file +BadgeIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/BarChartIcon.tsx b/src/Icons/Components/BarChartIcon.tsx index f73f70e0..0f8c7346 100644 --- a/src/Icons/Components/BarChartIcon.tsx +++ b/src/Icons/Components/BarChartIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BarChartIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BarChartIcon = React.forwardRef( ); BarChartIcon.displayName = 'BarChartIcon'; BarChartIcon.propTypes = {iconType: PropTypes.string}; -BarChartIcon.defaultProps = {iconType: 'Components'}; - -export default BarChartIcon; \ No newline at end of file +BarChartIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/BoxIcon.tsx b/src/Icons/Components/BoxIcon.tsx index 72223415..d3dc15a8 100644 --- a/src/Icons/Components/BoxIcon.tsx +++ b/src/Icons/Components/BoxIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BoxIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BoxIcon = React.forwardRef( ); BoxIcon.displayName = 'BoxIcon'; BoxIcon.propTypes = {iconType: PropTypes.string}; -BoxIcon.defaultProps = {iconType: 'Components'}; - -export default BoxIcon; \ No newline at end of file +BoxIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/ButtonIcon.tsx b/src/Icons/Components/ButtonIcon.tsx index c297e6a2..bcca91f1 100644 --- a/src/Icons/Components/ButtonIcon.tsx +++ b/src/Icons/Components/ButtonIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ButtonIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ButtonIcon = React.forwardRef( ); ButtonIcon.displayName = 'ButtonIcon'; ButtonIcon.propTypes = {iconType: PropTypes.string}; -ButtonIcon.defaultProps = {iconType: 'Components'}; - -export default ButtonIcon; \ No newline at end of file +ButtonIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/CalendarIcon.tsx b/src/Icons/Components/CalendarIcon.tsx index 5c351a29..004b009c 100644 --- a/src/Icons/Components/CalendarIcon.tsx +++ b/src/Icons/Components/CalendarIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CalendarIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CalendarIcon = React.forwardRef( ); CalendarIcon.displayName = 'CalendarIcon'; CalendarIcon.propTypes = {iconType: PropTypes.string}; -CalendarIcon.defaultProps = {iconType: 'Components'}; - -export default CalendarIcon; \ No newline at end of file +CalendarIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/CheckboxIcon.tsx b/src/Icons/Components/CheckboxIcon.tsx index c8c93c66..00bd6656 100644 --- a/src/Icons/Components/CheckboxIcon.tsx +++ b/src/Icons/Components/CheckboxIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CheckboxIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CheckboxIcon = React.forwardRef( ); CheckboxIcon.displayName = 'CheckboxIcon'; CheckboxIcon.propTypes = {iconType: PropTypes.string}; -CheckboxIcon.defaultProps = {iconType: 'Components'}; - -export default CheckboxIcon; \ No newline at end of file +CheckboxIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/CodeIcon.tsx b/src/Icons/Components/CodeIcon.tsx index 2fe457d3..034d54f9 100644 --- a/src/Icons/Components/CodeIcon.tsx +++ b/src/Icons/Components/CodeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CodeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CodeIcon = React.forwardRef( ); CodeIcon.displayName = 'CodeIcon'; CodeIcon.propTypes = {iconType: PropTypes.string}; -CodeIcon.defaultProps = {iconType: 'Components'}; - -export default CodeIcon; \ No newline at end of file +CodeIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/ContainerIcon.tsx b/src/Icons/Components/ContainerIcon.tsx index 02838c68..2f51c25b 100644 --- a/src/Icons/Components/ContainerIcon.tsx +++ b/src/Icons/Components/ContainerIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ContainerIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ContainerIcon = React.forwardRef( ); ContainerIcon.displayName = 'ContainerIcon'; ContainerIcon.propTypes = {iconType: PropTypes.string}; -ContainerIcon.defaultProps = {iconType: 'Components'}; - -export default ContainerIcon; \ No newline at end of file +ContainerIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/DashboardIcon.tsx b/src/Icons/Components/DashboardIcon.tsx index 05819df4..965e0134 100644 --- a/src/Icons/Components/DashboardIcon.tsx +++ b/src/Icons/Components/DashboardIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DashboardIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DashboardIcon = React.forwardRef( ); DashboardIcon.displayName = 'DashboardIcon'; DashboardIcon.propTypes = {iconType: PropTypes.string}; -DashboardIcon.defaultProps = {iconType: 'Components'}; - -export default DashboardIcon; \ No newline at end of file +DashboardIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/DividerHorizontalIcon.tsx b/src/Icons/Components/DividerHorizontalIcon.tsx index 0137d82f..259b1b82 100644 --- a/src/Icons/Components/DividerHorizontalIcon.tsx +++ b/src/Icons/Components/DividerHorizontalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DividerHorizontalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DividerHorizontalIcon = React.forwardRef( ); DividerHorizontalIcon.displayName = 'DividerHorizontalIcon'; DividerHorizontalIcon.propTypes = {iconType: PropTypes.string}; -DividerHorizontalIcon.defaultProps = {iconType: 'Components'}; - -export default DividerHorizontalIcon; \ No newline at end of file +DividerHorizontalIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/DividerVerticalIcon.tsx b/src/Icons/Components/DividerVerticalIcon.tsx index 7c9407ef..a72dd550 100644 --- a/src/Icons/Components/DividerVerticalIcon.tsx +++ b/src/Icons/Components/DividerVerticalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DividerVerticalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DividerVerticalIcon = React.forwardRef( ); DividerVerticalIcon.displayName = 'DividerVerticalIcon'; DividerVerticalIcon.propTypes = {iconType: PropTypes.string}; -DividerVerticalIcon.defaultProps = {iconType: 'Components'}; - -export default DividerVerticalIcon; \ No newline at end of file +DividerVerticalIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/DropdownMenuIcon.tsx b/src/Icons/Components/DropdownMenuIcon.tsx index 806d8454..6e98255c 100644 --- a/src/Icons/Components/DropdownMenuIcon.tsx +++ b/src/Icons/Components/DropdownMenuIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DropdownMenuIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DropdownMenuIcon = React.forwardRef( ); DropdownMenuIcon.displayName = 'DropdownMenuIcon'; DropdownMenuIcon.propTypes = {iconType: PropTypes.string}; -DropdownMenuIcon.defaultProps = {iconType: 'Components'}; - -export default DropdownMenuIcon; \ No newline at end of file +DropdownMenuIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/GridIcon.tsx b/src/Icons/Components/GridIcon.tsx index ece24bcb..a60b3fec 100644 --- a/src/Icons/Components/GridIcon.tsx +++ b/src/Icons/Components/GridIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const GridIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const GridIcon = React.forwardRef( ); GridIcon.displayName = 'GridIcon'; GridIcon.propTypes = {iconType: PropTypes.string}; -GridIcon.defaultProps = {iconType: 'Components'}; - -export default GridIcon; \ No newline at end of file +GridIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/ImageIcon.tsx b/src/Icons/Components/ImageIcon.tsx index f54c6de3..427c73a3 100644 --- a/src/Icons/Components/ImageIcon.tsx +++ b/src/Icons/Components/ImageIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ImageIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ImageIcon = React.forwardRef( ); ImageIcon.displayName = 'ImageIcon'; ImageIcon.propTypes = {iconType: PropTypes.string}; -ImageIcon.defaultProps = {iconType: 'Components'}; - -export default ImageIcon; \ No newline at end of file +ImageIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/InputIcon.tsx b/src/Icons/Components/InputIcon.tsx index a20edbf2..71669047 100644 --- a/src/Icons/Components/InputIcon.tsx +++ b/src/Icons/Components/InputIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const InputIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const InputIcon = React.forwardRef( ); InputIcon.displayName = 'InputIcon'; InputIcon.propTypes = {iconType: PropTypes.string}; -InputIcon.defaultProps = {iconType: 'Components'}; - -export default InputIcon; \ No newline at end of file +InputIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/LayoutIcon.tsx b/src/Icons/Components/LayoutIcon.tsx index 2bfa5520..893c5a38 100644 --- a/src/Icons/Components/LayoutIcon.tsx +++ b/src/Icons/Components/LayoutIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LayoutIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LayoutIcon = React.forwardRef( ); LayoutIcon.displayName = 'LayoutIcon'; LayoutIcon.propTypes = {iconType: PropTypes.string}; -LayoutIcon.defaultProps = {iconType: 'Components'}; - -export default LayoutIcon; \ No newline at end of file +LayoutIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/ListBulletIcon.tsx b/src/Icons/Components/ListBulletIcon.tsx index 3dd56ae9..b52b4afc 100644 --- a/src/Icons/Components/ListBulletIcon.tsx +++ b/src/Icons/Components/ListBulletIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ListBulletIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ListBulletIcon = React.forwardRef( ); ListBulletIcon.displayName = 'ListBulletIcon'; ListBulletIcon.propTypes = {iconType: PropTypes.string}; -ListBulletIcon.defaultProps = {iconType: 'Components'}; - -export default ListBulletIcon; \ No newline at end of file +ListBulletIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/PieChartIcon.tsx b/src/Icons/Components/PieChartIcon.tsx index b9d1c23e..0a28588d 100644 --- a/src/Icons/Components/PieChartIcon.tsx +++ b/src/Icons/Components/PieChartIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PieChartIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PieChartIcon = React.forwardRef( ); PieChartIcon.displayName = 'PieChartIcon'; PieChartIcon.propTypes = {iconType: PropTypes.string}; -PieChartIcon.defaultProps = {iconType: 'Components'}; - -export default PieChartIcon; \ No newline at end of file +PieChartIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/QuoteIcon.tsx b/src/Icons/Components/QuoteIcon.tsx index f560a341..d8505437 100644 --- a/src/Icons/Components/QuoteIcon.tsx +++ b/src/Icons/Components/QuoteIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const QuoteIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const QuoteIcon = React.forwardRef( ); QuoteIcon.displayName = 'QuoteIcon'; QuoteIcon.propTypes = {iconType: PropTypes.string}; -QuoteIcon.defaultProps = {iconType: 'Components'}; - -export default QuoteIcon; \ No newline at end of file +QuoteIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/RadiobuttonIcon.tsx b/src/Icons/Components/RadiobuttonIcon.tsx index fb072cdb..2eab4661 100644 --- a/src/Icons/Components/RadiobuttonIcon.tsx +++ b/src/Icons/Components/RadiobuttonIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const RadiobuttonIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const RadiobuttonIcon = React.forwardRef( ); RadiobuttonIcon.displayName = 'RadiobuttonIcon'; RadiobuttonIcon.propTypes = {iconType: PropTypes.string}; -RadiobuttonIcon.defaultProps = {iconType: 'Components'}; - -export default RadiobuttonIcon; \ No newline at end of file +RadiobuttonIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/SectionIcon.tsx b/src/Icons/Components/SectionIcon.tsx index 94003f1b..40839345 100644 --- a/src/Icons/Components/SectionIcon.tsx +++ b/src/Icons/Components/SectionIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SectionIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SectionIcon = React.forwardRef( ); SectionIcon.displayName = 'SectionIcon'; SectionIcon.propTypes = {iconType: PropTypes.string}; -SectionIcon.defaultProps = {iconType: 'Components'}; - -export default SectionIcon; \ No newline at end of file +SectionIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/SliderIcon.tsx b/src/Icons/Components/SliderIcon.tsx index f6e8b0c9..3279c505 100644 --- a/src/Icons/Components/SliderIcon.tsx +++ b/src/Icons/Components/SliderIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SliderIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SliderIcon = React.forwardRef( ); SliderIcon.displayName = 'SliderIcon'; SliderIcon.propTypes = {iconType: PropTypes.string}; -SliderIcon.defaultProps = {iconType: 'Components'}; - -export default SliderIcon; \ No newline at end of file +SliderIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/SwitchIcon.tsx b/src/Icons/Components/SwitchIcon.tsx index f10da445..f13669e6 100644 --- a/src/Icons/Components/SwitchIcon.tsx +++ b/src/Icons/Components/SwitchIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SwitchIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SwitchIcon = React.forwardRef( ); SwitchIcon.displayName = 'SwitchIcon'; SwitchIcon.propTypes = {iconType: PropTypes.string}; -SwitchIcon.defaultProps = {iconType: 'Components'}; - -export default SwitchIcon; \ No newline at end of file +SwitchIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/TableIcon.tsx b/src/Icons/Components/TableIcon.tsx index 08c2b0b6..29be58fe 100644 --- a/src/Icons/Components/TableIcon.tsx +++ b/src/Icons/Components/TableIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TableIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TableIcon = React.forwardRef( ); TableIcon.displayName = 'TableIcon'; TableIcon.propTypes = {iconType: PropTypes.string}; -TableIcon.defaultProps = {iconType: 'Components'}; - -export default TableIcon; \ No newline at end of file +TableIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Components/VideoIcon.tsx b/src/Icons/Components/VideoIcon.tsx index dfa34748..452c0b88 100644 --- a/src/Icons/Components/VideoIcon.tsx +++ b/src/Icons/Components/VideoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const VideoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Components', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const VideoIcon = React.forwardRef( ); VideoIcon.displayName = 'VideoIcon'; VideoIcon.propTypes = {iconType: PropTypes.string}; -VideoIcon.defaultProps = {iconType: 'Components'}; - -export default VideoIcon; \ No newline at end of file +VideoIcon.defaultProps = {iconType: 'Components'}; \ No newline at end of file diff --git a/src/Icons/Corners/CornerBottomLeftIcon.tsx b/src/Icons/Corners/CornerBottomLeftIcon.tsx index 90bb2821..a262d185 100644 --- a/src/Icons/Corners/CornerBottomLeftIcon.tsx +++ b/src/Icons/Corners/CornerBottomLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CornerBottomLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Corners', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CornerBottomLeftIcon = React.forwardRef( ); CornerBottomLeftIcon.displayName = 'CornerBottomLeftIcon'; CornerBottomLeftIcon.propTypes = {iconType: PropTypes.string}; -CornerBottomLeftIcon.defaultProps = {iconType: 'Corners'}; - -export default CornerBottomLeftIcon; \ No newline at end of file +CornerBottomLeftIcon.defaultProps = {iconType: 'Corners'}; \ No newline at end of file diff --git a/src/Icons/Corners/CornerBottomRightIcon.tsx b/src/Icons/Corners/CornerBottomRightIcon.tsx index f177a991..d416aba2 100644 --- a/src/Icons/Corners/CornerBottomRightIcon.tsx +++ b/src/Icons/Corners/CornerBottomRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CornerBottomRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Corners', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CornerBottomRightIcon = React.forwardRef( ); CornerBottomRightIcon.displayName = 'CornerBottomRightIcon'; CornerBottomRightIcon.propTypes = {iconType: PropTypes.string}; -CornerBottomRightIcon.defaultProps = {iconType: 'Corners'}; - -export default CornerBottomRightIcon; \ No newline at end of file +CornerBottomRightIcon.defaultProps = {iconType: 'Corners'}; \ No newline at end of file diff --git a/src/Icons/Corners/CornerTopLeftIcon.tsx b/src/Icons/Corners/CornerTopLeftIcon.tsx index bb5e0272..c7cf1408 100644 --- a/src/Icons/Corners/CornerTopLeftIcon.tsx +++ b/src/Icons/Corners/CornerTopLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CornerTopLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Corners', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CornerTopLeftIcon = React.forwardRef( ); CornerTopLeftIcon.displayName = 'CornerTopLeftIcon'; CornerTopLeftIcon.propTypes = {iconType: PropTypes.string}; -CornerTopLeftIcon.defaultProps = {iconType: 'Corners'}; - -export default CornerTopLeftIcon; \ No newline at end of file +CornerTopLeftIcon.defaultProps = {iconType: 'Corners'}; \ No newline at end of file diff --git a/src/Icons/Corners/CornerTopRightIcon.tsx b/src/Icons/Corners/CornerTopRightIcon.tsx index 5d19704b..0a965daa 100644 --- a/src/Icons/Corners/CornerTopRightIcon.tsx +++ b/src/Icons/Corners/CornerTopRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CornerTopRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Corners', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CornerTopRightIcon = React.forwardRef( ); CornerTopRightIcon.displayName = 'CornerTopRightIcon'; CornerTopRightIcon.propTypes = {iconType: PropTypes.string}; -CornerTopRightIcon.defaultProps = {iconType: 'Corners'}; - -export default CornerTopRightIcon; \ No newline at end of file +CornerTopRightIcon.defaultProps = {iconType: 'Corners'}; \ No newline at end of file diff --git a/src/Icons/Corners/CornersIcon.tsx b/src/Icons/Corners/CornersIcon.tsx index b90ff7f7..0a130838 100644 --- a/src/Icons/Corners/CornersIcon.tsx +++ b/src/Icons/Corners/CornersIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CornersIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Corners', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CornersIcon = React.forwardRef( ); CornersIcon.displayName = 'CornersIcon'; CornersIcon.propTypes = {iconType: PropTypes.string}; -CornersIcon.defaultProps = {iconType: 'Corners'}; - -export default CornersIcon; \ No newline at end of file +CornersIcon.defaultProps = {iconType: 'Corners'}; \ No newline at end of file diff --git a/src/Icons/Design/AngleIcon.tsx b/src/Icons/Design/AngleIcon.tsx index 92c6eeff..94e64e7e 100644 --- a/src/Icons/Design/AngleIcon.tsx +++ b/src/Icons/Design/AngleIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AngleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AngleIcon = React.forwardRef( ); AngleIcon.displayName = 'AngleIcon'; AngleIcon.propTypes = {iconType: PropTypes.string}; -AngleIcon.defaultProps = {iconType: 'Design'}; - -export default AngleIcon; \ No newline at end of file +AngleIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/BlendingModeIcon.tsx b/src/Icons/Design/BlendingModeIcon.tsx index 3d240c9e..abd443c8 100644 --- a/src/Icons/Design/BlendingModeIcon.tsx +++ b/src/Icons/Design/BlendingModeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BlendingModeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BlendingModeIcon = React.forwardRef( ); BlendingModeIcon.displayName = 'BlendingModeIcon'; BlendingModeIcon.propTypes = {iconType: PropTypes.string}; -BlendingModeIcon.defaultProps = {iconType: 'Design'}; - -export default BlendingModeIcon; \ No newline at end of file +BlendingModeIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/BoxModelIcon.tsx b/src/Icons/Design/BoxModelIcon.tsx index 9842bc8a..676589e4 100644 --- a/src/Icons/Design/BoxModelIcon.tsx +++ b/src/Icons/Design/BoxModelIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BoxModelIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BoxModelIcon = React.forwardRef( ); BoxModelIcon.displayName = 'BoxModelIcon'; BoxModelIcon.propTypes = {iconType: PropTypes.string}; -BoxModelIcon.defaultProps = {iconType: 'Design'}; - -export default BoxModelIcon; \ No newline at end of file +BoxModelIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ColorWheelIcon.tsx b/src/Icons/Design/ColorWheelIcon.tsx index 4d830684..64f73ac5 100644 --- a/src/Icons/Design/ColorWheelIcon.tsx +++ b/src/Icons/Design/ColorWheelIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ColorWheelIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ColorWheelIcon = React.forwardRef( ); ColorWheelIcon.displayName = 'ColorWheelIcon'; ColorWheelIcon.propTypes = {iconType: PropTypes.string}; -ColorWheelIcon.defaultProps = {iconType: 'Design'}; - -export default ColorWheelIcon; \ No newline at end of file +ColorWheelIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ColumnSpacingIcon.tsx b/src/Icons/Design/ColumnSpacingIcon.tsx index 3de32390..d67223e6 100644 --- a/src/Icons/Design/ColumnSpacingIcon.tsx +++ b/src/Icons/Design/ColumnSpacingIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ColumnSpacingIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ColumnSpacingIcon = React.forwardRef( ); ColumnSpacingIcon.displayName = 'ColumnSpacingIcon'; ColumnSpacingIcon.propTypes = {iconType: PropTypes.string}; -ColumnSpacingIcon.defaultProps = {iconType: 'Design'}; - -export default ColumnSpacingIcon; \ No newline at end of file +ColumnSpacingIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ColumnsIcon.tsx b/src/Icons/Design/ColumnsIcon.tsx index d9a5fb43..fd71c49c 100644 --- a/src/Icons/Design/ColumnsIcon.tsx +++ b/src/Icons/Design/ColumnsIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ColumnsIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ColumnsIcon = React.forwardRef( ); ColumnsIcon.displayName = 'ColumnsIcon'; ColumnsIcon.propTypes = {iconType: PropTypes.string}; -ColumnsIcon.defaultProps = {iconType: 'Design'}; - -export default ColumnsIcon; \ No newline at end of file +ColumnsIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/Component1Icon.tsx b/src/Icons/Design/Component1Icon.tsx index d77ecb60..f1c7bcf6 100644 --- a/src/Icons/Design/Component1Icon.tsx +++ b/src/Icons/Design/Component1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Component1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Component1Icon = React.forwardRef( ); Component1Icon.displayName = 'Component1Icon'; Component1Icon.propTypes = {iconType: PropTypes.string}; -Component1Icon.defaultProps = {iconType: 'Design'}; - -export default Component1Icon; \ No newline at end of file +Component1Icon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/Component2Icon.tsx b/src/Icons/Design/Component2Icon.tsx index e6c695a8..cc0f6b17 100644 --- a/src/Icons/Design/Component2Icon.tsx +++ b/src/Icons/Design/Component2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Component2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Component2Icon = React.forwardRef( ); Component2Icon.displayName = 'Component2Icon'; Component2Icon.propTypes = {iconType: PropTypes.string}; -Component2Icon.defaultProps = {iconType: 'Design'}; - -export default Component2Icon; \ No newline at end of file +Component2Icon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ComponentBooleanIcon.tsx b/src/Icons/Design/ComponentBooleanIcon.tsx index 127cab2b..3503c033 100644 --- a/src/Icons/Design/ComponentBooleanIcon.tsx +++ b/src/Icons/Design/ComponentBooleanIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ComponentBooleanIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ComponentBooleanIcon = React.forwardRef( ); ComponentBooleanIcon.displayName = 'ComponentBooleanIcon'; ComponentBooleanIcon.propTypes = {iconType: PropTypes.string}; -ComponentBooleanIcon.defaultProps = {iconType: 'Design'}; - -export default ComponentBooleanIcon; \ No newline at end of file +ComponentBooleanIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ComponentInstanceIcon.tsx b/src/Icons/Design/ComponentInstanceIcon.tsx index e5ca424c..3b884429 100644 --- a/src/Icons/Design/ComponentInstanceIcon.tsx +++ b/src/Icons/Design/ComponentInstanceIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ComponentInstanceIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ComponentInstanceIcon = React.forwardRef( ); ComponentInstanceIcon.displayName = 'ComponentInstanceIcon'; ComponentInstanceIcon.propTypes = {iconType: PropTypes.string}; -ComponentInstanceIcon.defaultProps = {iconType: 'Design'}; - -export default ComponentInstanceIcon; \ No newline at end of file +ComponentInstanceIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ComponentNoneIcon.tsx b/src/Icons/Design/ComponentNoneIcon.tsx index 8eab862d..ca236a49 100644 --- a/src/Icons/Design/ComponentNoneIcon.tsx +++ b/src/Icons/Design/ComponentNoneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ComponentNoneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ComponentNoneIcon = React.forwardRef( ); ComponentNoneIcon.displayName = 'ComponentNoneIcon'; ComponentNoneIcon.propTypes = {iconType: PropTypes.string}; -ComponentNoneIcon.defaultProps = {iconType: 'Design'}; - -export default ComponentNoneIcon; \ No newline at end of file +ComponentNoneIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ComponentPlaceholderIcon.tsx b/src/Icons/Design/ComponentPlaceholderIcon.tsx index eef78e3e..156f7730 100644 --- a/src/Icons/Design/ComponentPlaceholderIcon.tsx +++ b/src/Icons/Design/ComponentPlaceholderIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ComponentPlaceholderIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ComponentPlaceholderIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CropIcon = React.forwardRef( ); CropIcon.displayName = 'CropIcon'; CropIcon.propTypes = {iconType: PropTypes.string}; -CropIcon.defaultProps = {iconType: 'Design'}; - -export default CropIcon; \ No newline at end of file +CropIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/CursorArrowIcon.tsx b/src/Icons/Design/CursorArrowIcon.tsx index 6fd678e3..d879dffb 100644 --- a/src/Icons/Design/CursorArrowIcon.tsx +++ b/src/Icons/Design/CursorArrowIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CursorArrowIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CursorArrowIcon = React.forwardRef( ); CursorArrowIcon.displayName = 'CursorArrowIcon'; CursorArrowIcon.propTypes = {iconType: PropTypes.string}; -CursorArrowIcon.defaultProps = {iconType: 'Design'}; - -export default CursorArrowIcon; \ No newline at end of file +CursorArrowIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/CursorTextIcon.tsx b/src/Icons/Design/CursorTextIcon.tsx index 50267c5d..39b4d664 100644 --- a/src/Icons/Design/CursorTextIcon.tsx +++ b/src/Icons/Design/CursorTextIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CursorTextIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CursorTextIcon = React.forwardRef( ); CursorTextIcon.displayName = 'CursorTextIcon'; CursorTextIcon.propTypes = {iconType: PropTypes.string}; -CursorTextIcon.defaultProps = {iconType: 'Design'}; - -export default CursorTextIcon; \ No newline at end of file +CursorTextIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/DimensionsIcon.tsx b/src/Icons/Design/DimensionsIcon.tsx index b0f72ce3..6d39f4de 100644 --- a/src/Icons/Design/DimensionsIcon.tsx +++ b/src/Icons/Design/DimensionsIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DimensionsIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DimensionsIcon = React.forwardRef( ); DimensionsIcon.displayName = 'DimensionsIcon'; DimensionsIcon.propTypes = {iconType: PropTypes.string}; -DimensionsIcon.defaultProps = {iconType: 'Design'}; - -export default DimensionsIcon; \ No newline at end of file +DimensionsIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/FrameIcon.tsx b/src/Icons/Design/FrameIcon.tsx index 0d3f0a23..c228de46 100644 --- a/src/Icons/Design/FrameIcon.tsx +++ b/src/Icons/Design/FrameIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FrameIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FrameIcon = React.forwardRef( ); FrameIcon.displayName = 'FrameIcon'; FrameIcon.propTypes = {iconType: PropTypes.string}; -FrameIcon.defaultProps = {iconType: 'Design'}; - -export default FrameIcon; \ No newline at end of file +FrameIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/GroupIcon.tsx b/src/Icons/Design/GroupIcon.tsx index 0d53db1d..c31e4499 100644 --- a/src/Icons/Design/GroupIcon.tsx +++ b/src/Icons/Design/GroupIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const GroupIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const GroupIcon = React.forwardRef( ); GroupIcon.displayName = 'GroupIcon'; GroupIcon.propTypes = {iconType: PropTypes.string}; -GroupIcon.defaultProps = {iconType: 'Design'}; - -export default GroupIcon; \ No newline at end of file +GroupIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/LayersIcon.tsx b/src/Icons/Design/LayersIcon.tsx index 52de8928..3b6ec59f 100644 --- a/src/Icons/Design/LayersIcon.tsx +++ b/src/Icons/Design/LayersIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LayersIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LayersIcon = React.forwardRef( ); LayersIcon.displayName = 'LayersIcon'; LayersIcon.propTypes = {iconType: PropTypes.string}; -LayersIcon.defaultProps = {iconType: 'Design'}; - -export default LayersIcon; \ No newline at end of file +LayersIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/MarginIcon.tsx b/src/Icons/Design/MarginIcon.tsx index 3e8e2933..4d13a2b2 100644 --- a/src/Icons/Design/MarginIcon.tsx +++ b/src/Icons/Design/MarginIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MarginIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MarginIcon = React.forwardRef( ); MarginIcon.displayName = 'MarginIcon'; MarginIcon.propTypes = {iconType: PropTypes.string}; -MarginIcon.defaultProps = {iconType: 'Design'}; - -export default MarginIcon; \ No newline at end of file +MarginIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/MaskOffIcon.tsx b/src/Icons/Design/MaskOffIcon.tsx index b3e2eec4..76bf5d62 100644 --- a/src/Icons/Design/MaskOffIcon.tsx +++ b/src/Icons/Design/MaskOffIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MaskOffIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MaskOffIcon = React.forwardRef( ); MaskOffIcon.displayName = 'MaskOffIcon'; MaskOffIcon.propTypes = {iconType: PropTypes.string}; -MaskOffIcon.defaultProps = {iconType: 'Design'}; - -export default MaskOffIcon; \ No newline at end of file +MaskOffIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/MaskOnIcon.tsx b/src/Icons/Design/MaskOnIcon.tsx index c9853aa8..988aabb6 100644 --- a/src/Icons/Design/MaskOnIcon.tsx +++ b/src/Icons/Design/MaskOnIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MaskOnIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MaskOnIcon = React.forwardRef( ); MaskOnIcon.displayName = 'MaskOnIcon'; MaskOnIcon.propTypes = {iconType: PropTypes.string}; -MaskOnIcon.defaultProps = {iconType: 'Design'}; - -export default MaskOnIcon; \ No newline at end of file +MaskOnIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/OpacityIcon.tsx b/src/Icons/Design/OpacityIcon.tsx index 757715de..8162d1e7 100644 --- a/src/Icons/Design/OpacityIcon.tsx +++ b/src/Icons/Design/OpacityIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const OpacityIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const OpacityIcon = React.forwardRef( ); OpacityIcon.displayName = 'OpacityIcon'; OpacityIcon.propTypes = {iconType: PropTypes.string}; -OpacityIcon.defaultProps = {iconType: 'Design'}; - -export default OpacityIcon; \ No newline at end of file +OpacityIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/PaddingIcon.tsx b/src/Icons/Design/PaddingIcon.tsx index 2892b0f4..8e2e3a47 100644 --- a/src/Icons/Design/PaddingIcon.tsx +++ b/src/Icons/Design/PaddingIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PaddingIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PaddingIcon = React.forwardRef( ); PaddingIcon.displayName = 'PaddingIcon'; PaddingIcon.propTypes = {iconType: PropTypes.string}; -PaddingIcon.defaultProps = {iconType: 'Design'}; - -export default PaddingIcon; \ No newline at end of file +PaddingIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/RotateCounterClockwiseIcon.tsx b/src/Icons/Design/RotateCounterClockwiseIcon.tsx index ccab25ff..0fda6e1a 100644 --- a/src/Icons/Design/RotateCounterClockwiseIcon.tsx +++ b/src/Icons/Design/RotateCounterClockwiseIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const RotateCounterClockwiseIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const RotateCounterClockwiseIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const RowSpacingIcon = React.forwardRef( ); RowSpacingIcon.displayName = 'RowSpacingIcon'; RowSpacingIcon.propTypes = {iconType: PropTypes.string}; -RowSpacingIcon.defaultProps = {iconType: 'Design'}; - -export default RowSpacingIcon; \ No newline at end of file +RowSpacingIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/RowsIcon.tsx b/src/Icons/Design/RowsIcon.tsx index fe608a14..e4b0e0fe 100644 --- a/src/Icons/Design/RowsIcon.tsx +++ b/src/Icons/Design/RowsIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const RowsIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const RowsIcon = React.forwardRef( ); RowsIcon.displayName = 'RowsIcon'; RowsIcon.propTypes = {iconType: PropTypes.string}; -RowsIcon.defaultProps = {iconType: 'Design'}; - -export default RowsIcon; \ No newline at end of file +RowsIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ShadowIcon.tsx b/src/Icons/Design/ShadowIcon.tsx index f9a7d221..d774dd73 100644 --- a/src/Icons/Design/ShadowIcon.tsx +++ b/src/Icons/Design/ShadowIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ShadowIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ShadowIcon = React.forwardRef( ); ShadowIcon.displayName = 'ShadowIcon'; ShadowIcon.propTypes = {iconType: PropTypes.string}; -ShadowIcon.defaultProps = {iconType: 'Design'}; - -export default ShadowIcon; \ No newline at end of file +ShadowIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ShadowInnerIcon.tsx b/src/Icons/Design/ShadowInnerIcon.tsx index 651da5bd..e16402dd 100644 --- a/src/Icons/Design/ShadowInnerIcon.tsx +++ b/src/Icons/Design/ShadowInnerIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ShadowInnerIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ShadowInnerIcon = React.forwardRef( ); ShadowInnerIcon.displayName = 'ShadowInnerIcon'; ShadowInnerIcon.propTypes = {iconType: PropTypes.string}; -ShadowInnerIcon.defaultProps = {iconType: 'Design'}; - -export default ShadowInnerIcon; \ No newline at end of file +ShadowInnerIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ShadowNoneIcon.tsx b/src/Icons/Design/ShadowNoneIcon.tsx index c0dc4bc7..93a300b4 100644 --- a/src/Icons/Design/ShadowNoneIcon.tsx +++ b/src/Icons/Design/ShadowNoneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ShadowNoneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ShadowNoneIcon = React.forwardRef( ); ShadowNoneIcon.displayName = 'ShadowNoneIcon'; ShadowNoneIcon.propTypes = {iconType: PropTypes.string}; -ShadowNoneIcon.defaultProps = {iconType: 'Design'}; - -export default ShadowNoneIcon; \ No newline at end of file +ShadowNoneIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ShadowOuterIcon.tsx b/src/Icons/Design/ShadowOuterIcon.tsx index ffe6b1b7..73238826 100644 --- a/src/Icons/Design/ShadowOuterIcon.tsx +++ b/src/Icons/Design/ShadowOuterIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ShadowOuterIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { - return ; + return ; } ); ShadowOuterIcon.displayName = 'ShadowOuterIcon'; ShadowOuterIcon.propTypes = {iconType: PropTypes.string}; -ShadowOuterIcon.defaultProps = {iconType: 'Design'}; - -export default ShadowOuterIcon; \ No newline at end of file +ShadowOuterIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/StackIcon.tsx b/src/Icons/Design/StackIcon.tsx index 5e2f0cbb..19faddcc 100644 --- a/src/Icons/Design/StackIcon.tsx +++ b/src/Icons/Design/StackIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const StackIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StackIcon = React.forwardRef( ); StackIcon.displayName = 'StackIcon'; StackIcon.propTypes = {iconType: PropTypes.string}; -StackIcon.defaultProps = {iconType: 'Design'}; - -export default StackIcon; \ No newline at end of file +StackIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/SymbolIcon.tsx b/src/Icons/Design/SymbolIcon.tsx index 2bde28aa..5a4bc7d9 100644 --- a/src/Icons/Design/SymbolIcon.tsx +++ b/src/Icons/Design/SymbolIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SymbolIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SymbolIcon = React.forwardRef( ); SymbolIcon.displayName = 'SymbolIcon'; SymbolIcon.propTypes = {iconType: PropTypes.string}; -SymbolIcon.defaultProps = {iconType: 'Design'}; - -export default SymbolIcon; \ No newline at end of file +SymbolIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/TokensIcon.tsx b/src/Icons/Design/TokensIcon.tsx index 95a7a7f8..2d9679ee 100644 --- a/src/Icons/Design/TokensIcon.tsx +++ b/src/Icons/Design/TokensIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TokensIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TokensIcon = React.forwardRef( ); TokensIcon.displayName = 'TokensIcon'; TokensIcon.propTypes = {iconType: PropTypes.string}; -TokensIcon.defaultProps = {iconType: 'Design'}; - -export default TokensIcon; \ No newline at end of file +TokensIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/TransformIcon.tsx b/src/Icons/Design/TransformIcon.tsx index fed3bd10..527186e1 100644 --- a/src/Icons/Design/TransformIcon.tsx +++ b/src/Icons/Design/TransformIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TransformIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TransformIcon = React.forwardRef( ); TransformIcon.displayName = 'TransformIcon'; TransformIcon.propTypes = {iconType: PropTypes.string}; -TransformIcon.defaultProps = {iconType: 'Design'}; - -export default TransformIcon; \ No newline at end of file +TransformIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/TransparencyGridIcon.tsx b/src/Icons/Design/TransparencyGridIcon.tsx index b1015174..6db2da5b 100644 --- a/src/Icons/Design/TransparencyGridIcon.tsx +++ b/src/Icons/Design/TransparencyGridIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TransparencyGridIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TransparencyGridIcon = React.forwardRef( ); TransparencyGridIcon.displayName = 'TransparencyGridIcon'; TransparencyGridIcon.propTypes = {iconType: PropTypes.string}; -TransparencyGridIcon.defaultProps = {iconType: 'Design'}; - -export default TransparencyGridIcon; \ No newline at end of file +TransparencyGridIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ValueIcon.tsx b/src/Icons/Design/ValueIcon.tsx index e47f6a02..5a69389e 100644 --- a/src/Icons/Design/ValueIcon.tsx +++ b/src/Icons/Design/ValueIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ValueIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ValueIcon = React.forwardRef( ); ValueIcon.displayName = 'ValueIcon'; ValueIcon.propTypes = {iconType: PropTypes.string}; -ValueIcon.defaultProps = {iconType: 'Design'}; - -export default ValueIcon; \ No newline at end of file +ValueIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ValueNoneIcon.tsx b/src/Icons/Design/ValueNoneIcon.tsx index 3fb16e1c..677a8cb0 100644 --- a/src/Icons/Design/ValueNoneIcon.tsx +++ b/src/Icons/Design/ValueNoneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ValueNoneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ValueNoneIcon = React.forwardRef( ); ValueNoneIcon.displayName = 'ValueNoneIcon'; ValueNoneIcon.propTypes = {iconType: PropTypes.string}; -ValueNoneIcon.defaultProps = {iconType: 'Design'}; - -export default ValueNoneIcon; \ No newline at end of file +ValueNoneIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ZoomInIcon.tsx b/src/Icons/Design/ZoomInIcon.tsx index 0fbaf733..ec1cedbc 100644 --- a/src/Icons/Design/ZoomInIcon.tsx +++ b/src/Icons/Design/ZoomInIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ZoomInIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ZoomInIcon = React.forwardRef( ); ZoomInIcon.displayName = 'ZoomInIcon'; ZoomInIcon.propTypes = {iconType: PropTypes.string}; -ZoomInIcon.defaultProps = {iconType: 'Design'}; - -export default ZoomInIcon; \ No newline at end of file +ZoomInIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Design/ZoomOutIcon.tsx b/src/Icons/Design/ZoomOutIcon.tsx index c8ef466c..0720527e 100644 --- a/src/Icons/Design/ZoomOutIcon.tsx +++ b/src/Icons/Design/ZoomOutIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ZoomOutIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Design', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ZoomOutIcon = React.forwardRef( ); ZoomOutIcon.displayName = 'ZoomOutIcon'; ZoomOutIcon.propTypes = {iconType: PropTypes.string}; -ZoomOutIcon.defaultProps = {iconType: 'Design'}; - -export default ZoomOutIcon; \ No newline at end of file +ZoomOutIcon.defaultProps = {iconType: 'Design'}; \ No newline at end of file diff --git a/src/Icons/Lines/DashedIcon.tsx b/src/Icons/Lines/DashedIcon.tsx index 5e46f14e..b7e2c07c 100644 --- a/src/Icons/Lines/DashedIcon.tsx +++ b/src/Icons/Lines/DashedIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DashedIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Lines', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DashedIcon = React.forwardRef( ); DashedIcon.displayName = 'DashedIcon'; DashedIcon.propTypes = {iconType: PropTypes.string}; -DashedIcon.defaultProps = {iconType: 'Lines'}; - -export default DashedIcon; \ No newline at end of file +DashedIcon.defaultProps = {iconType: 'Lines'}; \ No newline at end of file diff --git a/src/Icons/Lines/DottedIcon.tsx b/src/Icons/Lines/DottedIcon.tsx index 863d9fa3..dfddddfc 100644 --- a/src/Icons/Lines/DottedIcon.tsx +++ b/src/Icons/Lines/DottedIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DottedIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Lines', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DottedIcon = React.forwardRef( ); DottedIcon.displayName = 'DottedIcon'; DottedIcon.propTypes = {iconType: PropTypes.string}; -DottedIcon.defaultProps = {iconType: 'Lines'}; - -export default DottedIcon; \ No newline at end of file +DottedIcon.defaultProps = {iconType: 'Lines'}; \ No newline at end of file diff --git a/src/Icons/Lines/LineWidthIcon.tsx b/src/Icons/Lines/LineWidthIcon.tsx index 25b56547..bf8a1bfb 100644 --- a/src/Icons/Lines/LineWidthIcon.tsx +++ b/src/Icons/Lines/LineWidthIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LineWidthIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Lines', ...props}, forwardedRef) => { - return ; + return ; } ); LineWidthIcon.displayName = 'LineWidthIcon'; LineWidthIcon.propTypes = {iconType: PropTypes.string}; -LineWidthIcon.defaultProps = {iconType: 'Lines'}; - -export default LineWidthIcon; \ No newline at end of file +LineWidthIcon.defaultProps = {iconType: 'Lines'}; \ No newline at end of file diff --git a/src/Icons/Lines/SolidIcon.tsx b/src/Icons/Lines/SolidIcon.tsx index f8839897..9b6cdf3a 100644 --- a/src/Icons/Lines/SolidIcon.tsx +++ b/src/Icons/Lines/SolidIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SolidIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Lines', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SolidIcon = React.forwardRef( ); SolidIcon.displayName = 'SolidIcon'; SolidIcon.propTypes = {iconType: PropTypes.string}; -SolidIcon.defaultProps = {iconType: 'Lines'}; - -export default SolidIcon; \ No newline at end of file +SolidIcon.defaultProps = {iconType: 'Lines'}; \ No newline at end of file diff --git a/src/Icons/Logos/AcgboxTextIcon.tsx b/src/Icons/Logos/AcgboxTextIcon.tsx new file mode 100644 index 00000000..112dbb99 --- /dev/null +++ b/src/Icons/Logos/AcgboxTextIcon.tsx @@ -0,0 +1,12 @@ +import * as React from 'react'; +import {IconProps} from '../types'; +import * as PropTypes from 'prop-types'; + +export const AcgboxTextIcon = React.forwardRef( + ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { + return ; + } +); +AcgboxTextIcon.displayName = 'AcgboxTextIcon'; +AcgboxTextIcon.propTypes = {iconType: PropTypes.string}; +AcgboxTextIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/BilibiliHelperLogoIcon.tsx b/src/Icons/Logos/BilibiliHelperLogoIcon.tsx index 451933a4..905b6c35 100644 --- a/src/Icons/Logos/BilibiliHelperLogoIcon.tsx +++ b/src/Icons/Logos/BilibiliHelperLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BilibiliHelperLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BilibiliHelperLogoIcon = React.forwardRef ); BilibiliHelperLogoIcon.displayName = 'BilibiliHelperLogoIcon'; BilibiliHelperLogoIcon.propTypes = {iconType: PropTypes.string}; -BilibiliHelperLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default BilibiliHelperLogoIcon; \ No newline at end of file +BilibiliHelperLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/BilibiliMusicLogoIcon.tsx b/src/Icons/Logos/BilibiliMusicLogoIcon.tsx index f27454d5..f0515cbe 100644 --- a/src/Icons/Logos/BilibiliMusicLogoIcon.tsx +++ b/src/Icons/Logos/BilibiliMusicLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BilibiliMusicLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BilibiliMusicLogoIcon = React.forwardRef( ); BilibiliMusicLogoIcon.displayName = 'BilibiliMusicLogoIcon'; BilibiliMusicLogoIcon.propTypes = {iconType: PropTypes.string}; -BilibiliMusicLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default BilibiliMusicLogoIcon; \ No newline at end of file +BilibiliMusicLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/BilibilihelperTextIcon.tsx b/src/Icons/Logos/BilibilihelperTextIcon.tsx index 65b98d9c..118c2cc6 100644 --- a/src/Icons/Logos/BilibilihelperTextIcon.tsx +++ b/src/Icons/Logos/BilibilihelperTextIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BilibilihelperTextIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BilibilihelperTextIcon = React.forwardRef ); BilibilihelperTextIcon.displayName = 'BilibilihelperTextIcon'; BilibilihelperTextIcon.propTypes = {iconType: PropTypes.string}; -BilibilihelperTextIcon.defaultProps = {iconType: 'Logos'}; - -export default BilibilihelperTextIcon; \ No newline at end of file +BilibilihelperTextIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/CodeSandboxLogoIcon.tsx b/src/Icons/Logos/CodeSandboxLogoIcon.tsx index e23298f1..04d00d4a 100644 --- a/src/Icons/Logos/CodeSandboxLogoIcon.tsx +++ b/src/Icons/Logos/CodeSandboxLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CodeSandboxLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CodeSandboxLogoIcon = React.forwardRef( ); CodeSandboxLogoIcon.displayName = 'CodeSandboxLogoIcon'; CodeSandboxLogoIcon.propTypes = {iconType: PropTypes.string}; -CodeSandboxLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default CodeSandboxLogoIcon; \ No newline at end of file +CodeSandboxLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/DiscordLogoIcon.tsx b/src/Icons/Logos/DiscordLogoIcon.tsx index e63c0378..88036ad3 100644 --- a/src/Icons/Logos/DiscordLogoIcon.tsx +++ b/src/Icons/Logos/DiscordLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DiscordLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DiscordLogoIcon = React.forwardRef( ); DiscordLogoIcon.displayName = 'DiscordLogoIcon'; DiscordLogoIcon.propTypes = {iconType: PropTypes.string}; -DiscordLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default DiscordLogoIcon; \ No newline at end of file +DiscordLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/FigmaLogoIcon.tsx b/src/Icons/Logos/FigmaLogoIcon.tsx index ac8a449e..dcf76e0d 100644 --- a/src/Icons/Logos/FigmaLogoIcon.tsx +++ b/src/Icons/Logos/FigmaLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FigmaLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FigmaLogoIcon = React.forwardRef( ); FigmaLogoIcon.displayName = 'FigmaLogoIcon'; FigmaLogoIcon.propTypes = {iconType: PropTypes.string}; -FigmaLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default FigmaLogoIcon; \ No newline at end of file +FigmaLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/FramerLogoIcon.tsx b/src/Icons/Logos/FramerLogoIcon.tsx index bcf4416b..c9851995 100644 --- a/src/Icons/Logos/FramerLogoIcon.tsx +++ b/src/Icons/Logos/FramerLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FramerLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FramerLogoIcon = React.forwardRef( ); FramerLogoIcon.displayName = 'FramerLogoIcon'; FramerLogoIcon.propTypes = {iconType: PropTypes.string}; -FramerLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default FramerLogoIcon; \ No newline at end of file +FramerLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/GitHubLogoIcon.tsx b/src/Icons/Logos/GitHubLogoIcon.tsx index 14353f04..97300977 100644 --- a/src/Icons/Logos/GitHubLogoIcon.tsx +++ b/src/Icons/Logos/GitHubLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const GitHubLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const GitHubLogoIcon = React.forwardRef( ); GitHubLogoIcon.displayName = 'GitHubLogoIcon'; GitHubLogoIcon.propTypes = {iconType: PropTypes.string}; -GitHubLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default GitHubLogoIcon; \ No newline at end of file +GitHubLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/IconJarLogoIcon.tsx b/src/Icons/Logos/IconJarLogoIcon.tsx index f27fccf9..e89756fe 100644 --- a/src/Icons/Logos/IconJarLogoIcon.tsx +++ b/src/Icons/Logos/IconJarLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const IconJarLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const IconJarLogoIcon = React.forwardRef( ); IconJarLogoIcon.displayName = 'IconJarLogoIcon'; IconJarLogoIcon.propTypes = {iconType: PropTypes.string}; -IconJarLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default IconJarLogoIcon; \ No newline at end of file +IconJarLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/IconfontLogoIcon.tsx b/src/Icons/Logos/IconfontLogoIcon.tsx index 74365259..1e39b9d4 100644 --- a/src/Icons/Logos/IconfontLogoIcon.tsx +++ b/src/Icons/Logos/IconfontLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const IconfontLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const IconfontLogoIcon = React.forwardRef( ); IconfontLogoIcon.displayName = 'IconfontLogoIcon'; IconfontLogoIcon.propTypes = {iconType: PropTypes.string}; -IconfontLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default IconfontLogoIcon; \ No newline at end of file +IconfontLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/InstagramLogoIcon.tsx b/src/Icons/Logos/InstagramLogoIcon.tsx index 2c079ebf..8522bd65 100644 --- a/src/Icons/Logos/InstagramLogoIcon.tsx +++ b/src/Icons/Logos/InstagramLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const InstagramLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const InstagramLogoIcon = React.forwardRef( ); InstagramLogoIcon.displayName = 'InstagramLogoIcon'; InstagramLogoIcon.propTypes = {iconType: PropTypes.string}; -InstagramLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default InstagramLogoIcon; \ No newline at end of file +InstagramLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/LinkedInLogoIcon.tsx b/src/Icons/Logos/LinkedInLogoIcon.tsx index 91297d23..1139d894 100644 --- a/src/Icons/Logos/LinkedInLogoIcon.tsx +++ b/src/Icons/Logos/LinkedInLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LinkedInLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LinkedInLogoIcon = React.forwardRef( ); LinkedInLogoIcon.displayName = 'LinkedInLogoIcon'; LinkedInLogoIcon.propTypes = {iconType: PropTypes.string}; -LinkedInLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default LinkedInLogoIcon; \ No newline at end of file +LinkedInLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/ModulzLogoIcon.tsx b/src/Icons/Logos/ModulzLogoIcon.tsx index 79bb7c29..2924a491 100644 --- a/src/Icons/Logos/ModulzLogoIcon.tsx +++ b/src/Icons/Logos/ModulzLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ModulzLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ModulzLogoIcon = React.forwardRef( ); ModulzLogoIcon.displayName = 'ModulzLogoIcon'; ModulzLogoIcon.propTypes = {iconType: PropTypes.string}; -ModulzLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default ModulzLogoIcon; \ No newline at end of file +ModulzLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/NotionLogoIcon.tsx b/src/Icons/Logos/NotionLogoIcon.tsx index 8a2d4d96..1ccdbd8b 100644 --- a/src/Icons/Logos/NotionLogoIcon.tsx +++ b/src/Icons/Logos/NotionLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const NotionLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const NotionLogoIcon = React.forwardRef( ); NotionLogoIcon.displayName = 'NotionLogoIcon'; NotionLogoIcon.propTypes = {iconType: PropTypes.string}; -NotionLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default NotionLogoIcon; \ No newline at end of file +NotionLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/ReactLogoIcon.tsx b/src/Icons/Logos/ReactLogoIcon.tsx index d0ff90a7..373ce9fc 100644 --- a/src/Icons/Logos/ReactLogoIcon.tsx +++ b/src/Icons/Logos/ReactLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ReactLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ReactLogoIcon = React.forwardRef( ); ReactLogoIcon.displayName = 'ReactLogoIcon'; ReactLogoIcon.propTypes = {iconType: PropTypes.string}; -ReactLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default ReactLogoIcon; \ No newline at end of file +ReactLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/SketchColorLogoIcon.tsx b/src/Icons/Logos/SketchColorLogoIcon.tsx index a80c9520..5069924f 100644 --- a/src/Icons/Logos/SketchColorLogoIcon.tsx +++ b/src/Icons/Logos/SketchColorLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SketchColorLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SketchColorLogoIcon = React.forwardRef( ); SketchColorLogoIcon.displayName = 'SketchColorLogoIcon'; SketchColorLogoIcon.propTypes = {iconType: PropTypes.string}; -SketchColorLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default SketchColorLogoIcon; \ No newline at end of file +SketchColorLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/SketchLogoIcon.tsx b/src/Icons/Logos/SketchLogoIcon.tsx index 01b166d8..5cbabd12 100644 --- a/src/Icons/Logos/SketchLogoIcon.tsx +++ b/src/Icons/Logos/SketchLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SketchLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SketchLogoIcon = React.forwardRef( ); SketchLogoIcon.displayName = 'SketchLogoIcon'; SketchLogoIcon.propTypes = {iconType: PropTypes.string}; -SketchLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default SketchLogoIcon; \ No newline at end of file +SketchLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/StitchesLogoIcon.tsx b/src/Icons/Logos/StitchesLogoIcon.tsx index 86262ade..68e22a03 100644 --- a/src/Icons/Logos/StitchesLogoIcon.tsx +++ b/src/Icons/Logos/StitchesLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const StitchesLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StitchesLogoIcon = React.forwardRef( ); StitchesLogoIcon.displayName = 'StitchesLogoIcon'; StitchesLogoIcon.propTypes = {iconType: PropTypes.string}; -StitchesLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default StitchesLogoIcon; \ No newline at end of file +StitchesLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/TwitterLogoIcon.tsx b/src/Icons/Logos/TwitterLogoIcon.tsx index bfac7a03..add61598 100644 --- a/src/Icons/Logos/TwitterLogoIcon.tsx +++ b/src/Icons/Logos/TwitterLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TwitterLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TwitterLogoIcon = React.forwardRef( ); TwitterLogoIcon.displayName = 'TwitterLogoIcon'; TwitterLogoIcon.propTypes = {iconType: PropTypes.string}; -TwitterLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default TwitterLogoIcon; \ No newline at end of file +TwitterLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Logos/VercelLogoIcon.tsx b/src/Icons/Logos/VercelLogoIcon.tsx index 3b366ced..40f075dd 100644 --- a/src/Icons/Logos/VercelLogoIcon.tsx +++ b/src/Icons/Logos/VercelLogoIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const VercelLogoIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Logos', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const VercelLogoIcon = React.forwardRef( ); VercelLogoIcon.displayName = 'VercelLogoIcon'; VercelLogoIcon.propTypes = {iconType: PropTypes.string}; -VercelLogoIcon.defaultProps = {iconType: 'Logos'}; - -export default VercelLogoIcon; \ No newline at end of file +VercelLogoIcon.defaultProps = {iconType: 'Logos'}; \ No newline at end of file diff --git a/src/Icons/Objects/ArchiveIcon.tsx b/src/Icons/Objects/ArchiveIcon.tsx index f7cf2b8f..58b24404 100644 --- a/src/Icons/Objects/ArchiveIcon.tsx +++ b/src/Icons/Objects/ArchiveIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ArchiveIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ArchiveIcon = React.forwardRef( ); ArchiveIcon.displayName = 'ArchiveIcon'; ArchiveIcon.propTypes = {iconType: PropTypes.string}; -ArchiveIcon.defaultProps = {iconType: 'Objects'}; - -export default ArchiveIcon; \ No newline at end of file +ArchiveIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/BackpackIcon.tsx b/src/Icons/Objects/BackpackIcon.tsx index 6ebd6012..93df0eb2 100644 --- a/src/Icons/Objects/BackpackIcon.tsx +++ b/src/Icons/Objects/BackpackIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BackpackIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BackpackIcon = React.forwardRef( ); BackpackIcon.displayName = 'BackpackIcon'; BackpackIcon.propTypes = {iconType: PropTypes.string}; -BackpackIcon.defaultProps = {iconType: 'Objects'}; - -export default BackpackIcon; \ No newline at end of file +BackpackIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/BellIcon.tsx b/src/Icons/Objects/BellIcon.tsx index edb462b1..bc2e9eac 100644 --- a/src/Icons/Objects/BellIcon.tsx +++ b/src/Icons/Objects/BellIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BellIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BellIcon = React.forwardRef( ); BellIcon.displayName = 'BellIcon'; BellIcon.propTypes = {iconType: PropTypes.string}; -BellIcon.defaultProps = {iconType: 'Objects'}; - -export default BellIcon; \ No newline at end of file +BellIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/BookmarkFilledIcon.tsx b/src/Icons/Objects/BookmarkFilledIcon.tsx index e03fa36b..4d3a23a7 100644 --- a/src/Icons/Objects/BookmarkFilledIcon.tsx +++ b/src/Icons/Objects/BookmarkFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BookmarkFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BookmarkFilledIcon = React.forwardRef( ); BookmarkFilledIcon.displayName = 'BookmarkFilledIcon'; BookmarkFilledIcon.propTypes = {iconType: PropTypes.string}; -BookmarkFilledIcon.defaultProps = {iconType: 'Objects'}; - -export default BookmarkFilledIcon; \ No newline at end of file +BookmarkFilledIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/BookmarkIcon.tsx b/src/Icons/Objects/BookmarkIcon.tsx index bd660829..b198d7cf 100644 --- a/src/Icons/Objects/BookmarkIcon.tsx +++ b/src/Icons/Objects/BookmarkIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const BookmarkIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const BookmarkIcon = React.forwardRef( ); BookmarkIcon.displayName = 'BookmarkIcon'; BookmarkIcon.propTypes = {iconType: PropTypes.string}; -BookmarkIcon.defaultProps = {iconType: 'Objects'}; - -export default BookmarkIcon; \ No newline at end of file +BookmarkIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CameraIcon.tsx b/src/Icons/Objects/CameraIcon.tsx index e3f0f8f9..0ae7a439 100644 --- a/src/Icons/Objects/CameraIcon.tsx +++ b/src/Icons/Objects/CameraIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CameraIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CameraIcon = React.forwardRef( ); CameraIcon.displayName = 'CameraIcon'; CameraIcon.propTypes = {iconType: PropTypes.string}; -CameraIcon.defaultProps = {iconType: 'Objects'}; - -export default CameraIcon; \ No newline at end of file +CameraIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CardStackIcon.tsx b/src/Icons/Objects/CardStackIcon.tsx index 8078ae7e..0614ce37 100644 --- a/src/Icons/Objects/CardStackIcon.tsx +++ b/src/Icons/Objects/CardStackIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CardStackIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CardStackIcon = React.forwardRef( ); CardStackIcon.displayName = 'CardStackIcon'; CardStackIcon.propTypes = {iconType: PropTypes.string}; -CardStackIcon.defaultProps = {iconType: 'Objects'}; - -export default CardStackIcon; \ No newline at end of file +CardStackIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CardStackMinusIcon.tsx b/src/Icons/Objects/CardStackMinusIcon.tsx index 0ad9ae54..460120a4 100644 --- a/src/Icons/Objects/CardStackMinusIcon.tsx +++ b/src/Icons/Objects/CardStackMinusIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CardStackMinusIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CardStackMinusIcon = React.forwardRef( ); CardStackMinusIcon.displayName = 'CardStackMinusIcon'; CardStackMinusIcon.propTypes = {iconType: PropTypes.string}; -CardStackMinusIcon.defaultProps = {iconType: 'Objects'}; - -export default CardStackMinusIcon; \ No newline at end of file +CardStackMinusIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CardStackPlusIcon.tsx b/src/Icons/Objects/CardStackPlusIcon.tsx index 3ff4d2bd..de9cb0bb 100644 --- a/src/Icons/Objects/CardStackPlusIcon.tsx +++ b/src/Icons/Objects/CardStackPlusIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CardStackPlusIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CardStackPlusIcon = React.forwardRef( ); CardStackPlusIcon.displayName = 'CardStackPlusIcon'; CardStackPlusIcon.propTypes = {iconType: PropTypes.string}; -CardStackPlusIcon.defaultProps = {iconType: 'Objects'}; - -export default CardStackPlusIcon; \ No newline at end of file +CardStackPlusIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/ChatBubbleIcon.tsx b/src/Icons/Objects/ChatBubbleIcon.tsx index 3c78a725..7b3b5020 100644 --- a/src/Icons/Objects/ChatBubbleIcon.tsx +++ b/src/Icons/Objects/ChatBubbleIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ChatBubbleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ChatBubbleIcon = React.forwardRef( ); ChatBubbleIcon.displayName = 'ChatBubbleIcon'; ChatBubbleIcon.propTypes = {iconType: PropTypes.string}; -ChatBubbleIcon.defaultProps = {iconType: 'Objects'}; - -export default ChatBubbleIcon; \ No newline at end of file +ChatBubbleIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/ClipboardCopyIcon.tsx b/src/Icons/Objects/ClipboardCopyIcon.tsx index 8a68172b..7a9bece1 100644 --- a/src/Icons/Objects/ClipboardCopyIcon.tsx +++ b/src/Icons/Objects/ClipboardCopyIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ClipboardCopyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); ClipboardCopyIcon.displayName = 'ClipboardCopyIcon'; ClipboardCopyIcon.propTypes = {iconType: PropTypes.string}; -ClipboardCopyIcon.defaultProps = {iconType: 'Objects'}; - -export default ClipboardCopyIcon; \ No newline at end of file +ClipboardCopyIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/ClipboardIcon.tsx b/src/Icons/Objects/ClipboardIcon.tsx index 4d3c579d..f840f273 100644 --- a/src/Icons/Objects/ClipboardIcon.tsx +++ b/src/Icons/Objects/ClipboardIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ClipboardIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); ClipboardIcon.displayName = 'ClipboardIcon'; ClipboardIcon.propTypes = {iconType: PropTypes.string}; -ClipboardIcon.defaultProps = {iconType: 'Objects'}; - -export default ClipboardIcon; \ No newline at end of file +ClipboardIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/ClockIcon.tsx b/src/Icons/Objects/ClockIcon.tsx index 906591ff..2c74b202 100644 --- a/src/Icons/Objects/ClockIcon.tsx +++ b/src/Icons/Objects/ClockIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ClockIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ClockIcon = React.forwardRef( ); ClockIcon.displayName = 'ClockIcon'; ClockIcon.propTypes = {iconType: PropTypes.string}; -ClockIcon.defaultProps = {iconType: 'Objects'}; - -export default ClockIcon; \ No newline at end of file +ClockIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CookieIcon.tsx b/src/Icons/Objects/CookieIcon.tsx index 1b3963f5..643411ec 100644 --- a/src/Icons/Objects/CookieIcon.tsx +++ b/src/Icons/Objects/CookieIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CookieIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CookieIcon = React.forwardRef( ); CookieIcon.displayName = 'CookieIcon'; CookieIcon.propTypes = {iconType: PropTypes.string}; -CookieIcon.defaultProps = {iconType: 'Objects'}; - -export default CookieIcon; \ No newline at end of file +CookieIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CountdownTimerIcon.tsx b/src/Icons/Objects/CountdownTimerIcon.tsx index 2a7cfdcf..d27c9560 100644 --- a/src/Icons/Objects/CountdownTimerIcon.tsx +++ b/src/Icons/Objects/CountdownTimerIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CountdownTimerIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CountdownTimerIcon = React.forwardRef( ); CountdownTimerIcon.displayName = 'CountdownTimerIcon'; CountdownTimerIcon.propTypes = {iconType: PropTypes.string}; -CountdownTimerIcon.defaultProps = {iconType: 'Objects'}; - -export default CountdownTimerIcon; \ No newline at end of file +CountdownTimerIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CounterClockwiseClockIcon.tsx b/src/Icons/Objects/CounterClockwiseClockIcon.tsx index 906a03bb..3c182ec1 100644 --- a/src/Icons/Objects/CounterClockwiseClockIcon.tsx +++ b/src/Icons/Objects/CounterClockwiseClockIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CounterClockwiseClockIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CounterClockwiseClockIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Crosshair1Icon = React.forwardRef( ); Crosshair1Icon.displayName = 'Crosshair1Icon'; Crosshair1Icon.propTypes = {iconType: PropTypes.string}; -Crosshair1Icon.defaultProps = {iconType: 'Objects'}; - -export default Crosshair1Icon; \ No newline at end of file +Crosshair1Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/Crosshair2Icon.tsx b/src/Icons/Objects/Crosshair2Icon.tsx index de39f67e..e38e4e3c 100644 --- a/src/Icons/Objects/Crosshair2Icon.tsx +++ b/src/Icons/Objects/Crosshair2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Crosshair2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Crosshair2Icon = React.forwardRef( ); Crosshair2Icon.displayName = 'Crosshair2Icon'; Crosshair2Icon.propTypes = {iconType: PropTypes.string}; -Crosshair2Icon.defaultProps = {iconType: 'Objects'}; - -export default Crosshair2Icon; \ No newline at end of file +Crosshair2Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CrumpledPaperIcon.tsx b/src/Icons/Objects/CrumpledPaperIcon.tsx index 7499d780..c47122c3 100644 --- a/src/Icons/Objects/CrumpledPaperIcon.tsx +++ b/src/Icons/Objects/CrumpledPaperIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CrumpledPaperIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); CrumpledPaperIcon.displayName = 'CrumpledPaperIcon'; CrumpledPaperIcon.propTypes = {iconType: PropTypes.string}; -CrumpledPaperIcon.defaultProps = {iconType: 'Objects'}; - -export default CrumpledPaperIcon; \ No newline at end of file +CrumpledPaperIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/CubeIcon.tsx b/src/Icons/Objects/CubeIcon.tsx index 6ababfbd..9f2749ce 100644 --- a/src/Icons/Objects/CubeIcon.tsx +++ b/src/Icons/Objects/CubeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const CubeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const CubeIcon = React.forwardRef( ); CubeIcon.displayName = 'CubeIcon'; CubeIcon.propTypes = {iconType: PropTypes.string}; -CubeIcon.defaultProps = {iconType: 'Objects'}; - -export default CubeIcon; \ No newline at end of file +CubeIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/DesktopIcon.tsx b/src/Icons/Objects/DesktopIcon.tsx index 841988c4..bb7ab59f 100644 --- a/src/Icons/Objects/DesktopIcon.tsx +++ b/src/Icons/Objects/DesktopIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DesktopIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DesktopIcon = React.forwardRef( ); DesktopIcon.displayName = 'DesktopIcon'; DesktopIcon.propTypes = {iconType: PropTypes.string}; -DesktopIcon.defaultProps = {iconType: 'Objects'}; - -export default DesktopIcon; \ No newline at end of file +DesktopIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/DiscIcon.tsx b/src/Icons/Objects/DiscIcon.tsx index 5bd0bfa7..466784f6 100644 --- a/src/Icons/Objects/DiscIcon.tsx +++ b/src/Icons/Objects/DiscIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DiscIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DiscIcon = React.forwardRef( ); DiscIcon.displayName = 'DiscIcon'; DiscIcon.propTypes = {iconType: PropTypes.string}; -DiscIcon.defaultProps = {iconType: 'Objects'}; - -export default DiscIcon; \ No newline at end of file +DiscIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/DrawingPinFilledIcon.tsx b/src/Icons/Objects/DrawingPinFilledIcon.tsx index cfc5223e..2746d713 100644 --- a/src/Icons/Objects/DrawingPinFilledIcon.tsx +++ b/src/Icons/Objects/DrawingPinFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DrawingPinFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DrawingPinFilledIcon = React.forwardRef( ); DrawingPinFilledIcon.displayName = 'DrawingPinFilledIcon'; DrawingPinFilledIcon.propTypes = {iconType: PropTypes.string}; -DrawingPinFilledIcon.defaultProps = {iconType: 'Objects'}; - -export default DrawingPinFilledIcon; \ No newline at end of file +DrawingPinFilledIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/DrawingPinIcon.tsx b/src/Icons/Objects/DrawingPinIcon.tsx index 663644a9..74e1e758 100644 --- a/src/Icons/Objects/DrawingPinIcon.tsx +++ b/src/Icons/Objects/DrawingPinIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DrawingPinIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DrawingPinIcon = React.forwardRef( ); DrawingPinIcon.displayName = 'DrawingPinIcon'; DrawingPinIcon.propTypes = {iconType: PropTypes.string}; -DrawingPinIcon.defaultProps = {iconType: 'Objects'}; - -export default DrawingPinIcon; \ No newline at end of file +DrawingPinIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/EnvelopeClosedIcon.tsx b/src/Icons/Objects/EnvelopeClosedIcon.tsx index a5c6c5e6..4646207a 100644 --- a/src/Icons/Objects/EnvelopeClosedIcon.tsx +++ b/src/Icons/Objects/EnvelopeClosedIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const EnvelopeClosedIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const EnvelopeClosedIcon = React.forwardRef( ); EnvelopeClosedIcon.displayName = 'EnvelopeClosedIcon'; EnvelopeClosedIcon.propTypes = {iconType: PropTypes.string}; -EnvelopeClosedIcon.defaultProps = {iconType: 'Objects'}; - -export default EnvelopeClosedIcon; \ No newline at end of file +EnvelopeClosedIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/EnvelopeOpenIcon.tsx b/src/Icons/Objects/EnvelopeOpenIcon.tsx index 5e4496d6..dbad1167 100644 --- a/src/Icons/Objects/EnvelopeOpenIcon.tsx +++ b/src/Icons/Objects/EnvelopeOpenIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const EnvelopeOpenIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const EnvelopeOpenIcon = React.forwardRef( ); EnvelopeOpenIcon.displayName = 'EnvelopeOpenIcon'; EnvelopeOpenIcon.propTypes = {iconType: PropTypes.string}; -EnvelopeOpenIcon.defaultProps = {iconType: 'Objects'}; - -export default EnvelopeOpenIcon; \ No newline at end of file +EnvelopeOpenIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/EraserIcon.tsx b/src/Icons/Objects/EraserIcon.tsx index 869e968c..688bd7b2 100644 --- a/src/Icons/Objects/EraserIcon.tsx +++ b/src/Icons/Objects/EraserIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const EraserIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); EraserIcon.displayName = 'EraserIcon'; EraserIcon.propTypes = {iconType: PropTypes.string}; -EraserIcon.defaultProps = {iconType: 'Objects'}; - -export default EraserIcon; \ No newline at end of file +EraserIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/EyeClosedIcon.tsx b/src/Icons/Objects/EyeClosedIcon.tsx index f6564dbb..d1fea467 100644 --- a/src/Icons/Objects/EyeClosedIcon.tsx +++ b/src/Icons/Objects/EyeClosedIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const EyeClosedIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const EyeClosedIcon = React.forwardRef( ); EyeClosedIcon.displayName = 'EyeClosedIcon'; EyeClosedIcon.propTypes = {iconType: PropTypes.string}; -EyeClosedIcon.defaultProps = {iconType: 'Objects'}; - -export default EyeClosedIcon; \ No newline at end of file +EyeClosedIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/EyeNoneIcon.tsx b/src/Icons/Objects/EyeNoneIcon.tsx index a9d90c2e..5f7b043f 100644 --- a/src/Icons/Objects/EyeNoneIcon.tsx +++ b/src/Icons/Objects/EyeNoneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const EyeNoneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const EyeNoneIcon = React.forwardRef( ); EyeNoneIcon.displayName = 'EyeNoneIcon'; EyeNoneIcon.propTypes = {iconType: PropTypes.string}; -EyeNoneIcon.defaultProps = {iconType: 'Objects'}; - -export default EyeNoneIcon; \ No newline at end of file +EyeNoneIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/EyeOpenIcon.tsx b/src/Icons/Objects/EyeOpenIcon.tsx index 9a48e688..a04e02e2 100644 --- a/src/Icons/Objects/EyeOpenIcon.tsx +++ b/src/Icons/Objects/EyeOpenIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const EyeOpenIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const EyeOpenIcon = React.forwardRef( ); EyeOpenIcon.displayName = 'EyeOpenIcon'; EyeOpenIcon.propTypes = {iconType: PropTypes.string}; -EyeOpenIcon.defaultProps = {iconType: 'Objects'}; - -export default EyeOpenIcon; \ No newline at end of file +EyeOpenIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/FaceIcon.tsx b/src/Icons/Objects/FaceIcon.tsx index 17c79a44..a47fd8dd 100644 --- a/src/Icons/Objects/FaceIcon.tsx +++ b/src/Icons/Objects/FaceIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FaceIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FaceIcon = React.forwardRef( ); FaceIcon.displayName = 'FaceIcon'; FaceIcon.propTypes = {iconType: PropTypes.string}; -FaceIcon.defaultProps = {iconType: 'Objects'}; - -export default FaceIcon; \ No newline at end of file +FaceIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/FileIcon.tsx b/src/Icons/Objects/FileIcon.tsx index 60967bcd..c5ca3401 100644 --- a/src/Icons/Objects/FileIcon.tsx +++ b/src/Icons/Objects/FileIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FileIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FileIcon = React.forwardRef( ); FileIcon.displayName = 'FileIcon'; FileIcon.propTypes = {iconType: PropTypes.string}; -FileIcon.defaultProps = {iconType: 'Objects'}; - -export default FileIcon; \ No newline at end of file +FileIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/FileMinusIcon.tsx b/src/Icons/Objects/FileMinusIcon.tsx index a5b358af..2ddb74dd 100644 --- a/src/Icons/Objects/FileMinusIcon.tsx +++ b/src/Icons/Objects/FileMinusIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FileMinusIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FileMinusIcon = React.forwardRef( ); FileMinusIcon.displayName = 'FileMinusIcon'; FileMinusIcon.propTypes = {iconType: PropTypes.string}; -FileMinusIcon.defaultProps = {iconType: 'Objects'}; - -export default FileMinusIcon; \ No newline at end of file +FileMinusIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/FilePlusIcon.tsx b/src/Icons/Objects/FilePlusIcon.tsx index f7c09615..7a23c4bd 100644 --- a/src/Icons/Objects/FilePlusIcon.tsx +++ b/src/Icons/Objects/FilePlusIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FilePlusIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FilePlusIcon = React.forwardRef( ); FilePlusIcon.displayName = 'FilePlusIcon'; FilePlusIcon.propTypes = {iconType: PropTypes.string}; -FilePlusIcon.defaultProps = {iconType: 'Objects'}; - -export default FilePlusIcon; \ No newline at end of file +FilePlusIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/FileTextIcon.tsx b/src/Icons/Objects/FileTextIcon.tsx index 71e2211d..57dddf7d 100644 --- a/src/Icons/Objects/FileTextIcon.tsx +++ b/src/Icons/Objects/FileTextIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FileTextIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FileTextIcon = React.forwardRef( ); FileTextIcon.displayName = 'FileTextIcon'; FileTextIcon.propTypes = {iconType: PropTypes.string}; -FileTextIcon.defaultProps = {iconType: 'Objects'}; - -export default FileTextIcon; \ No newline at end of file +FileTextIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/GearIcon.tsx b/src/Icons/Objects/GearIcon.tsx index c0984b4d..a47f518b 100644 --- a/src/Icons/Objects/GearIcon.tsx +++ b/src/Icons/Objects/GearIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const GearIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const GearIcon = React.forwardRef( ); GearIcon.displayName = 'GearIcon'; GearIcon.propTypes = {iconType: PropTypes.string}; -GearIcon.defaultProps = {iconType: 'Objects'}; - -export default GearIcon; \ No newline at end of file +GearIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/GlobeIcon.tsx b/src/Icons/Objects/GlobeIcon.tsx index 4a95fe6b..aac2c912 100644 --- a/src/Icons/Objects/GlobeIcon.tsx +++ b/src/Icons/Objects/GlobeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const GlobeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const GlobeIcon = React.forwardRef( ); GlobeIcon.displayName = 'GlobeIcon'; GlobeIcon.propTypes = {iconType: PropTypes.string}; -GlobeIcon.defaultProps = {iconType: 'Objects'}; - -export default GlobeIcon; \ No newline at end of file +GlobeIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/HandIcon.tsx b/src/Icons/Objects/HandIcon.tsx index bb264cd1..7e79f795 100644 --- a/src/Icons/Objects/HandIcon.tsx +++ b/src/Icons/Objects/HandIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const HandIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const HandIcon = React.forwardRef( ); HandIcon.displayName = 'HandIcon'; HandIcon.propTypes = {iconType: PropTypes.string}; -HandIcon.defaultProps = {iconType: 'Objects'}; - -export default HandIcon; \ No newline at end of file +HandIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/HeartFilledIcon.tsx b/src/Icons/Objects/HeartFilledIcon.tsx index 57e9370f..871e3a60 100644 --- a/src/Icons/Objects/HeartFilledIcon.tsx +++ b/src/Icons/Objects/HeartFilledIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const HeartFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); HeartFilledIcon.displayName = 'HeartFilledIcon'; HeartFilledIcon.propTypes = {iconType: PropTypes.string}; -HeartFilledIcon.defaultProps = {iconType: 'Objects'}; - -export default HeartFilledIcon; \ No newline at end of file +HeartFilledIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/HeartIcon.tsx b/src/Icons/Objects/HeartIcon.tsx index fafd32b4..d8a0a515 100644 --- a/src/Icons/Objects/HeartIcon.tsx +++ b/src/Icons/Objects/HeartIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const HeartIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); HeartIcon.displayName = 'HeartIcon'; HeartIcon.propTypes = {iconType: PropTypes.string}; -HeartIcon.defaultProps = {iconType: 'Objects'}; - -export default HeartIcon; \ No newline at end of file +HeartIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/HobbyKnifeIcon.tsx b/src/Icons/Objects/HobbyKnifeIcon.tsx index ce3b837f..605b5145 100644 --- a/src/Icons/Objects/HobbyKnifeIcon.tsx +++ b/src/Icons/Objects/HobbyKnifeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const HobbyKnifeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const HobbyKnifeIcon = React.forwardRef( ); HobbyKnifeIcon.displayName = 'HobbyKnifeIcon'; HobbyKnifeIcon.propTypes = {iconType: PropTypes.string}; -HobbyKnifeIcon.defaultProps = {iconType: 'Objects'}; - -export default HobbyKnifeIcon; \ No newline at end of file +HobbyKnifeIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/HomeIcon.tsx b/src/Icons/Objects/HomeIcon.tsx index f07a67b6..17b351d7 100644 --- a/src/Icons/Objects/HomeIcon.tsx +++ b/src/Icons/Objects/HomeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const HomeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const HomeIcon = React.forwardRef( ); HomeIcon.displayName = 'HomeIcon'; HomeIcon.propTypes = {iconType: PropTypes.string}; -HomeIcon.defaultProps = {iconType: 'Objects'}; - -export default HomeIcon; \ No newline at end of file +HomeIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/IdCardIcon.tsx b/src/Icons/Objects/IdCardIcon.tsx index af96e953..daf24ded 100644 --- a/src/Icons/Objects/IdCardIcon.tsx +++ b/src/Icons/Objects/IdCardIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const IdCardIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const IdCardIcon = React.forwardRef( ); IdCardIcon.displayName = 'IdCardIcon'; IdCardIcon.propTypes = {iconType: PropTypes.string}; -IdCardIcon.defaultProps = {iconType: 'Objects'}; - -export default IdCardIcon; \ No newline at end of file +IdCardIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/KeyboardIcon.tsx b/src/Icons/Objects/KeyboardIcon.tsx index fd560d0a..54d2e794 100644 --- a/src/Icons/Objects/KeyboardIcon.tsx +++ b/src/Icons/Objects/KeyboardIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const KeyboardIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); KeyboardIcon.displayName = 'KeyboardIcon'; KeyboardIcon.propTypes = {iconType: PropTypes.string}; -KeyboardIcon.defaultProps = {iconType: 'Objects'}; - -export default KeyboardIcon; \ No newline at end of file +KeyboardIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LapTimerIcon.tsx b/src/Icons/Objects/LapTimerIcon.tsx index 99b0ddec..40783de0 100644 --- a/src/Icons/Objects/LapTimerIcon.tsx +++ b/src/Icons/Objects/LapTimerIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LapTimerIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LapTimerIcon = React.forwardRef( ); LapTimerIcon.displayName = 'LapTimerIcon'; LapTimerIcon.propTypes = {iconType: PropTypes.string}; -LapTimerIcon.defaultProps = {iconType: 'Objects'}; - -export default LapTimerIcon; \ No newline at end of file +LapTimerIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LaptopIcon.tsx b/src/Icons/Objects/LaptopIcon.tsx index 47ab05c5..1e4d033c 100644 --- a/src/Icons/Objects/LaptopIcon.tsx +++ b/src/Icons/Objects/LaptopIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LaptopIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LaptopIcon = React.forwardRef( ); LaptopIcon.displayName = 'LaptopIcon'; LaptopIcon.propTypes = {iconType: PropTypes.string}; -LaptopIcon.defaultProps = {iconType: 'Objects'}; - -export default LaptopIcon; \ No newline at end of file +LaptopIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LeftWingIcon.tsx b/src/Icons/Objects/LeftWingIcon.tsx index f6328c58..04eb21eb 100644 --- a/src/Icons/Objects/LeftWingIcon.tsx +++ b/src/Icons/Objects/LeftWingIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LeftWingIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LeftWingIcon = React.forwardRef( ); LeftWingIcon.displayName = 'LeftWingIcon'; LeftWingIcon.propTypes = {iconType: PropTypes.string}; -LeftWingIcon.defaultProps = {iconType: 'Objects'}; - -export default LeftWingIcon; \ No newline at end of file +LeftWingIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LightningBoltIcon.tsx b/src/Icons/Objects/LightningBoltIcon.tsx index 0f7d807f..fce49636 100644 --- a/src/Icons/Objects/LightningBoltIcon.tsx +++ b/src/Icons/Objects/LightningBoltIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LightningBoltIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LightningBoltIcon = React.forwardRef( ); LightningBoltIcon.displayName = 'LightningBoltIcon'; LightningBoltIcon.propTypes = {iconType: PropTypes.string}; -LightningBoltIcon.defaultProps = {iconType: 'Objects'}; - -export default LightningBoltIcon; \ No newline at end of file +LightningBoltIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/Link1Icon.tsx b/src/Icons/Objects/Link1Icon.tsx index d5d6d844..160d93e2 100644 --- a/src/Icons/Objects/Link1Icon.tsx +++ b/src/Icons/Objects/Link1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Link1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Link1Icon = React.forwardRef( ); Link1Icon.displayName = 'Link1Icon'; Link1Icon.propTypes = {iconType: PropTypes.string}; -Link1Icon.defaultProps = {iconType: 'Objects'}; - -export default Link1Icon; \ No newline at end of file +Link1Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/Link2Icon.tsx b/src/Icons/Objects/Link2Icon.tsx index 44f41a86..f4a58666 100644 --- a/src/Icons/Objects/Link2Icon.tsx +++ b/src/Icons/Objects/Link2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Link2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Link2Icon = React.forwardRef( ); Link2Icon.displayName = 'Link2Icon'; Link2Icon.propTypes = {iconType: PropTypes.string}; -Link2Icon.defaultProps = {iconType: 'Objects'}; - -export default Link2Icon; \ No newline at end of file +Link2Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LinkBreak1Icon.tsx b/src/Icons/Objects/LinkBreak1Icon.tsx index 15c7a91d..b853e328 100644 --- a/src/Icons/Objects/LinkBreak1Icon.tsx +++ b/src/Icons/Objects/LinkBreak1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LinkBreak1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LinkBreak1Icon = React.forwardRef( ); LinkBreak1Icon.displayName = 'LinkBreak1Icon'; LinkBreak1Icon.propTypes = {iconType: PropTypes.string}; -LinkBreak1Icon.defaultProps = {iconType: 'Objects'}; - -export default LinkBreak1Icon; \ No newline at end of file +LinkBreak1Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LinkBreak2Icon.tsx b/src/Icons/Objects/LinkBreak2Icon.tsx index 4b3652f0..b4b76745 100644 --- a/src/Icons/Objects/LinkBreak2Icon.tsx +++ b/src/Icons/Objects/LinkBreak2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LinkBreak2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LinkBreak2Icon = React.forwardRef( ); LinkBreak2Icon.displayName = 'LinkBreak2Icon'; LinkBreak2Icon.propTypes = {iconType: PropTypes.string}; -LinkBreak2Icon.defaultProps = {iconType: 'Objects'}; - -export default LinkBreak2Icon; \ No newline at end of file +LinkBreak2Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LinkNone1Icon.tsx b/src/Icons/Objects/LinkNone1Icon.tsx index 270ac7e7..c9e1aa0b 100644 --- a/src/Icons/Objects/LinkNone1Icon.tsx +++ b/src/Icons/Objects/LinkNone1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LinkNone1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LinkNone1Icon = React.forwardRef( ); LinkNone1Icon.displayName = 'LinkNone1Icon'; LinkNone1Icon.propTypes = {iconType: PropTypes.string}; -LinkNone1Icon.defaultProps = {iconType: 'Objects'}; - -export default LinkNone1Icon; \ No newline at end of file +LinkNone1Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LinkNone2Icon.tsx b/src/Icons/Objects/LinkNone2Icon.tsx index 839bf54b..3f9329e7 100644 --- a/src/Icons/Objects/LinkNone2Icon.tsx +++ b/src/Icons/Objects/LinkNone2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LinkNone2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LinkNone2Icon = React.forwardRef( ); LinkNone2Icon.displayName = 'LinkNone2Icon'; LinkNone2Icon.propTypes = {iconType: PropTypes.string}; -LinkNone2Icon.defaultProps = {iconType: 'Objects'}; - -export default LinkNone2Icon; \ No newline at end of file +LinkNone2Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LockClosedIcon.tsx b/src/Icons/Objects/LockClosedIcon.tsx index 0ef819c0..961b38f6 100644 --- a/src/Icons/Objects/LockClosedIcon.tsx +++ b/src/Icons/Objects/LockClosedIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LockClosedIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LockClosedIcon = React.forwardRef( ); LockClosedIcon.displayName = 'LockClosedIcon'; LockClosedIcon.propTypes = {iconType: PropTypes.string}; -LockClosedIcon.defaultProps = {iconType: 'Objects'}; - -export default LockClosedIcon; \ No newline at end of file +LockClosedIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LockOpen1Icon.tsx b/src/Icons/Objects/LockOpen1Icon.tsx index 9fdf390d..43cb98c8 100644 --- a/src/Icons/Objects/LockOpen1Icon.tsx +++ b/src/Icons/Objects/LockOpen1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LockOpen1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LockOpen1Icon = React.forwardRef( ); LockOpen1Icon.displayName = 'LockOpen1Icon'; LockOpen1Icon.propTypes = {iconType: PropTypes.string}; -LockOpen1Icon.defaultProps = {iconType: 'Objects'}; - -export default LockOpen1Icon; \ No newline at end of file +LockOpen1Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/LockOpen2Icon.tsx b/src/Icons/Objects/LockOpen2Icon.tsx index 7c0e9d75..655cf77f 100644 --- a/src/Icons/Objects/LockOpen2Icon.tsx +++ b/src/Icons/Objects/LockOpen2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LockOpen2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LockOpen2Icon = React.forwardRef( ); LockOpen2Icon.displayName = 'LockOpen2Icon'; LockOpen2Icon.propTypes = {iconType: PropTypes.string}; -LockOpen2Icon.defaultProps = {iconType: 'Objects'}; - -export default LockOpen2Icon; \ No newline at end of file +LockOpen2Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/MagicWandIcon.tsx b/src/Icons/Objects/MagicWandIcon.tsx index c502c798..7b94d4f4 100644 --- a/src/Icons/Objects/MagicWandIcon.tsx +++ b/src/Icons/Objects/MagicWandIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MagicWandIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MagicWandIcon = React.forwardRef( ); MagicWandIcon.displayName = 'MagicWandIcon'; MagicWandIcon.propTypes = {iconType: PropTypes.string}; -MagicWandIcon.defaultProps = {iconType: 'Objects'}; - -export default MagicWandIcon; \ No newline at end of file +MagicWandIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/MagnifierIcon.tsx b/src/Icons/Objects/MagnifierIcon.tsx index e7f9f958..b5aef2d4 100644 --- a/src/Icons/Objects/MagnifierIcon.tsx +++ b/src/Icons/Objects/MagnifierIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MagnifierIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MagnifierIcon = React.forwardRef( ); MagnifierIcon.displayName = 'MagnifierIcon'; MagnifierIcon.propTypes = {iconType: PropTypes.string}; -MagnifierIcon.defaultProps = {iconType: 'Objects'}; - -export default MagnifierIcon; \ No newline at end of file +MagnifierIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/MagnifyingGlassIcon.tsx b/src/Icons/Objects/MagnifyingGlassIcon.tsx index 501ba4c8..4129d56b 100644 --- a/src/Icons/Objects/MagnifyingGlassIcon.tsx +++ b/src/Icons/Objects/MagnifyingGlassIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MagnifyingGlassIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MagnifyingGlassIcon = React.forwardRef( ); MagnifyingGlassIcon.displayName = 'MagnifyingGlassIcon'; MagnifyingGlassIcon.propTypes = {iconType: PropTypes.string}; -MagnifyingGlassIcon.defaultProps = {iconType: 'Objects'}; - -export default MagnifyingGlassIcon; \ No newline at end of file +MagnifyingGlassIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/MixIcon.tsx b/src/Icons/Objects/MixIcon.tsx index 766ebd92..144515ce 100644 --- a/src/Icons/Objects/MixIcon.tsx +++ b/src/Icons/Objects/MixIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MixIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MixIcon = React.forwardRef( ); MixIcon.displayName = 'MixIcon'; MixIcon.propTypes = {iconType: PropTypes.string}; -MixIcon.defaultProps = {iconType: 'Objects'}; - -export default MixIcon; \ No newline at end of file +MixIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/MixerHorizontalIcon.tsx b/src/Icons/Objects/MixerHorizontalIcon.tsx index fdee8b70..e8f41ccb 100644 --- a/src/Icons/Objects/MixerHorizontalIcon.tsx +++ b/src/Icons/Objects/MixerHorizontalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MixerHorizontalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MixerHorizontalIcon = React.forwardRef( ); MixerHorizontalIcon.displayName = 'MixerHorizontalIcon'; MixerHorizontalIcon.propTypes = {iconType: PropTypes.string}; -MixerHorizontalIcon.defaultProps = {iconType: 'Objects'}; - -export default MixerHorizontalIcon; \ No newline at end of file +MixerHorizontalIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/MixerVerticalIcon.tsx b/src/Icons/Objects/MixerVerticalIcon.tsx index e4554267..aece6e4e 100644 --- a/src/Icons/Objects/MixerVerticalIcon.tsx +++ b/src/Icons/Objects/MixerVerticalIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MixerVerticalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MixerVerticalIcon = React.forwardRef( ); MixerVerticalIcon.displayName = 'MixerVerticalIcon'; MixerVerticalIcon.propTypes = {iconType: PropTypes.string}; -MixerVerticalIcon.defaultProps = {iconType: 'Objects'}; - -export default MixerVerticalIcon; \ No newline at end of file +MixerVerticalIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/MobileIcon.tsx b/src/Icons/Objects/MobileIcon.tsx index 5a95b588..109d1ef6 100644 --- a/src/Icons/Objects/MobileIcon.tsx +++ b/src/Icons/Objects/MobileIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MobileIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MobileIcon = React.forwardRef( ); MobileIcon.displayName = 'MobileIcon'; MobileIcon.propTypes = {iconType: PropTypes.string}; -MobileIcon.defaultProps = {iconType: 'Objects'}; - -export default MobileIcon; \ No newline at end of file +MobileIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/MoonIcon.tsx b/src/Icons/Objects/MoonIcon.tsx index 371d8a06..e0618cc5 100644 --- a/src/Icons/Objects/MoonIcon.tsx +++ b/src/Icons/Objects/MoonIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const MoonIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const MoonIcon = React.forwardRef( ); MoonIcon.displayName = 'MoonIcon'; MoonIcon.propTypes = {iconType: PropTypes.string}; -MoonIcon.defaultProps = {iconType: 'Objects'}; - -export default MoonIcon; \ No newline at end of file +MoonIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/PaperPlaneIcon.tsx b/src/Icons/Objects/PaperPlaneIcon.tsx index 7233b94e..28881fa7 100644 --- a/src/Icons/Objects/PaperPlaneIcon.tsx +++ b/src/Icons/Objects/PaperPlaneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PaperPlaneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PaperPlaneIcon = React.forwardRef( ); PaperPlaneIcon.displayName = 'PaperPlaneIcon'; PaperPlaneIcon.propTypes = {iconType: PropTypes.string}; -PaperPlaneIcon.defaultProps = {iconType: 'Objects'}; - -export default PaperPlaneIcon; \ No newline at end of file +PaperPlaneIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/Pencil1Icon.tsx b/src/Icons/Objects/Pencil1Icon.tsx index c9dd4fb8..595bd1a3 100644 --- a/src/Icons/Objects/Pencil1Icon.tsx +++ b/src/Icons/Objects/Pencil1Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Pencil1Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Pencil1Icon = React.forwardRef( ); Pencil1Icon.displayName = 'Pencil1Icon'; Pencil1Icon.propTypes = {iconType: PropTypes.string}; -Pencil1Icon.defaultProps = {iconType: 'Objects'}; - -export default Pencil1Icon; \ No newline at end of file +Pencil1Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/Pencil2Icon.tsx b/src/Icons/Objects/Pencil2Icon.tsx index d34cdedd..3b4a1d56 100644 --- a/src/Icons/Objects/Pencil2Icon.tsx +++ b/src/Icons/Objects/Pencil2Icon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const Pencil2Icon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const Pencil2Icon = React.forwardRef( ); Pencil2Icon.displayName = 'Pencil2Icon'; Pencil2Icon.propTypes = {iconType: PropTypes.string}; -Pencil2Icon.defaultProps = {iconType: 'Objects'}; - -export default Pencil2Icon; \ No newline at end of file +Pencil2Icon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/PersonIcon.tsx b/src/Icons/Objects/PersonIcon.tsx index 45f9148f..52c14897 100644 --- a/src/Icons/Objects/PersonIcon.tsx +++ b/src/Icons/Objects/PersonIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PersonIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PersonIcon = React.forwardRef( ); PersonIcon.displayName = 'PersonIcon'; PersonIcon.propTypes = {iconType: PropTypes.string}; -PersonIcon.defaultProps = {iconType: 'Objects'}; - -export default PersonIcon; \ No newline at end of file +PersonIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/ReaderIcon.tsx b/src/Icons/Objects/ReaderIcon.tsx index 0210271d..7dff775c 100644 --- a/src/Icons/Objects/ReaderIcon.tsx +++ b/src/Icons/Objects/ReaderIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ReaderIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ReaderIcon = React.forwardRef( ); ReaderIcon.displayName = 'ReaderIcon'; ReaderIcon.propTypes = {iconType: PropTypes.string}; -ReaderIcon.defaultProps = {iconType: 'Objects'}; - -export default ReaderIcon; \ No newline at end of file +ReaderIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/RightWingIcon.tsx b/src/Icons/Objects/RightWingIcon.tsx index 0d18ef42..aba4319e 100644 --- a/src/Icons/Objects/RightWingIcon.tsx +++ b/src/Icons/Objects/RightWingIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const RightWingIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const RightWingIcon = React.forwardRef( ); RightWingIcon.displayName = 'RightWingIcon'; RightWingIcon.propTypes = {iconType: PropTypes.string}; -RightWingIcon.defaultProps = {iconType: 'Objects'}; - -export default RightWingIcon; \ No newline at end of file +RightWingIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/RocketIcon.tsx b/src/Icons/Objects/RocketIcon.tsx index abcf7ef4..69788acf 100644 --- a/src/Icons/Objects/RocketIcon.tsx +++ b/src/Icons/Objects/RocketIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const RocketIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const RocketIcon = React.forwardRef( ); RocketIcon.displayName = 'RocketIcon'; RocketIcon.propTypes = {iconType: PropTypes.string}; -RocketIcon.defaultProps = {iconType: 'Objects'}; - -export default RocketIcon; \ No newline at end of file +RocketIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/RulerHorizontalIcon.tsx b/src/Icons/Objects/RulerHorizontalIcon.tsx index 2ac9ffb5..cdb2cbc0 100644 --- a/src/Icons/Objects/RulerHorizontalIcon.tsx +++ b/src/Icons/Objects/RulerHorizontalIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const RulerHorizontalIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); RulerHorizontalIcon.displayName = 'RulerHorizontalIcon'; RulerHorizontalIcon.propTypes = {iconType: PropTypes.string}; -RulerHorizontalIcon.defaultProps = {iconType: 'Objects'}; - -export default RulerHorizontalIcon; \ No newline at end of file +RulerHorizontalIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/RulerSquareIcon.tsx b/src/Icons/Objects/RulerSquareIcon.tsx index e821efac..36bfbeb6 100644 --- a/src/Icons/Objects/RulerSquareIcon.tsx +++ b/src/Icons/Objects/RulerSquareIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const RulerSquareIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); RulerSquareIcon.displayName = 'RulerSquareIcon'; RulerSquareIcon.propTypes = {iconType: PropTypes.string}; -RulerSquareIcon.defaultProps = {iconType: 'Objects'}; - -export default RulerSquareIcon; \ No newline at end of file +RulerSquareIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/ScissorsIcon.tsx b/src/Icons/Objects/ScissorsIcon.tsx index dcbbedac..86efb645 100644 --- a/src/Icons/Objects/ScissorsIcon.tsx +++ b/src/Icons/Objects/ScissorsIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ScissorsIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { - return ; + return ; } ); ScissorsIcon.displayName = 'ScissorsIcon'; ScissorsIcon.propTypes = {iconType: PropTypes.string}; -ScissorsIcon.defaultProps = {iconType: 'Objects'}; - -export default ScissorsIcon; \ No newline at end of file +ScissorsIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/SewingPinFilledIcon.tsx b/src/Icons/Objects/SewingPinFilledIcon.tsx index 4fef997e..4ec14234 100644 --- a/src/Icons/Objects/SewingPinFilledIcon.tsx +++ b/src/Icons/Objects/SewingPinFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SewingPinFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SewingPinFilledIcon = React.forwardRef( ); SewingPinFilledIcon.displayName = 'SewingPinFilledIcon'; SewingPinFilledIcon.propTypes = {iconType: PropTypes.string}; -SewingPinFilledIcon.defaultProps = {iconType: 'Objects'}; - -export default SewingPinFilledIcon; \ No newline at end of file +SewingPinFilledIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/SewingPinIcon.tsx b/src/Icons/Objects/SewingPinIcon.tsx index cf3f6e66..ae42947a 100644 --- a/src/Icons/Objects/SewingPinIcon.tsx +++ b/src/Icons/Objects/SewingPinIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SewingPinIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SewingPinIcon = React.forwardRef( ); SewingPinIcon.displayName = 'SewingPinIcon'; SewingPinIcon.propTypes = {iconType: PropTypes.string}; -SewingPinIcon.defaultProps = {iconType: 'Objects'}; - -export default SewingPinIcon; \ No newline at end of file +SewingPinIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/StarFilledIcon.tsx b/src/Icons/Objects/StarFilledIcon.tsx index 37e44d41..842829a2 100644 --- a/src/Icons/Objects/StarFilledIcon.tsx +++ b/src/Icons/Objects/StarFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const StarFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StarFilledIcon = React.forwardRef( ); StarFilledIcon.displayName = 'StarFilledIcon'; StarFilledIcon.propTypes = {iconType: PropTypes.string}; -StarFilledIcon.defaultProps = {iconType: 'Objects'}; - -export default StarFilledIcon; \ No newline at end of file +StarFilledIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/StarIcon.tsx b/src/Icons/Objects/StarIcon.tsx index 18a69c30..0fff6a10 100644 --- a/src/Icons/Objects/StarIcon.tsx +++ b/src/Icons/Objects/StarIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const StarIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StarIcon = React.forwardRef( ); StarIcon.displayName = 'StarIcon'; StarIcon.propTypes = {iconType: PropTypes.string}; -StarIcon.defaultProps = {iconType: 'Objects'}; - -export default StarIcon; \ No newline at end of file +StarIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/StopwatchIcon.tsx b/src/Icons/Objects/StopwatchIcon.tsx index 1e0f9840..47dbe92a 100644 --- a/src/Icons/Objects/StopwatchIcon.tsx +++ b/src/Icons/Objects/StopwatchIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const StopwatchIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StopwatchIcon = React.forwardRef( ); StopwatchIcon.displayName = 'StopwatchIcon'; StopwatchIcon.propTypes = {iconType: PropTypes.string}; -StopwatchIcon.defaultProps = {iconType: 'Objects'}; - -export default StopwatchIcon; \ No newline at end of file +StopwatchIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/SunIcon.tsx b/src/Icons/Objects/SunIcon.tsx index e573a265..de18c2c9 100644 --- a/src/Icons/Objects/SunIcon.tsx +++ b/src/Icons/Objects/SunIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SunIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SunIcon = React.forwardRef( ); SunIcon.displayName = 'SunIcon'; SunIcon.propTypes = {iconType: PropTypes.string}; -SunIcon.defaultProps = {iconType: 'Objects'}; - -export default SunIcon; \ No newline at end of file +SunIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/TargetIcon.tsx b/src/Icons/Objects/TargetIcon.tsx index 768b2f59..4fd79554 100644 --- a/src/Icons/Objects/TargetIcon.tsx +++ b/src/Icons/Objects/TargetIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TargetIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TargetIcon = React.forwardRef( ); TargetIcon.displayName = 'TargetIcon'; TargetIcon.propTypes = {iconType: PropTypes.string}; -TargetIcon.defaultProps = {iconType: 'Objects'}; - -export default TargetIcon; \ No newline at end of file +TargetIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/TimerIcon.tsx b/src/Icons/Objects/TimerIcon.tsx index 902a4605..29bf187d 100644 --- a/src/Icons/Objects/TimerIcon.tsx +++ b/src/Icons/Objects/TimerIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TimerIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TimerIcon = React.forwardRef( ); TimerIcon.displayName = 'TimerIcon'; TimerIcon.propTypes = {iconType: PropTypes.string}; -TimerIcon.defaultProps = {iconType: 'Objects'}; - -export default TimerIcon; \ No newline at end of file +TimerIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Objects/TrashIcon.tsx b/src/Icons/Objects/TrashIcon.tsx index 26ad9fa4..2ffd17da 100644 --- a/src/Icons/Objects/TrashIcon.tsx +++ b/src/Icons/Objects/TrashIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TrashIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Objects', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TrashIcon = React.forwardRef( ); TrashIcon.displayName = 'TrashIcon'; TrashIcon.propTypes = {iconType: PropTypes.string}; -TrashIcon.defaultProps = {iconType: 'Objects'}; - -export default TrashIcon; \ No newline at end of file +TrashIcon.defaultProps = {iconType: 'Objects'}; \ No newline at end of file diff --git a/src/Icons/Player/LoopIcon.tsx b/src/Icons/Player/LoopIcon.tsx index eac69d03..f85067cc 100644 --- a/src/Icons/Player/LoopIcon.tsx +++ b/src/Icons/Player/LoopIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LoopIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LoopIcon = React.forwardRef( ); LoopIcon.displayName = 'LoopIcon'; LoopIcon.propTypes = {iconType: PropTypes.string}; -LoopIcon.defaultProps = {iconType: 'Player'}; - -export default LoopIcon; \ No newline at end of file +LoopIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/LoopOneIcon.tsx b/src/Icons/Player/LoopOneIcon.tsx index 93aaa731..fa2bbc00 100644 --- a/src/Icons/Player/LoopOneIcon.tsx +++ b/src/Icons/Player/LoopOneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LoopOneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LoopOneIcon = React.forwardRef( ); LoopOneIcon.displayName = 'LoopOneIcon'; LoopOneIcon.propTypes = {iconType: PropTypes.string}; -LoopOneIcon.defaultProps = {iconType: 'Player'}; - -export default LoopOneIcon; \ No newline at end of file +LoopOneIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/PauseIcon.tsx b/src/Icons/Player/PauseIcon.tsx index 0c752099..f899d4c6 100644 --- a/src/Icons/Player/PauseIcon.tsx +++ b/src/Icons/Player/PauseIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PauseIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PauseIcon = React.forwardRef( ); PauseIcon.displayName = 'PauseIcon'; PauseIcon.propTypes = {iconType: PropTypes.string}; -PauseIcon.defaultProps = {iconType: 'Player'}; - -export default PauseIcon; \ No newline at end of file +PauseIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/PlayFilledIcon.tsx b/src/Icons/Player/PlayFilledIcon.tsx index 82cb8705..2e1ba053 100644 --- a/src/Icons/Player/PlayFilledIcon.tsx +++ b/src/Icons/Player/PlayFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PlayFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PlayFilledIcon = React.forwardRef( ); PlayFilledIcon.displayName = 'PlayFilledIcon'; PlayFilledIcon.propTypes = {iconType: PropTypes.string}; -PlayFilledIcon.defaultProps = {iconType: 'Player'}; - -export default PlayFilledIcon; \ No newline at end of file +PlayFilledIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/PlayIcon.tsx b/src/Icons/Player/PlayIcon.tsx index e7cb935d..d79c95ea 100644 --- a/src/Icons/Player/PlayIcon.tsx +++ b/src/Icons/Player/PlayIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PlayIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const PlayIcon = React.forwardRef( ); PlayIcon.displayName = 'PlayIcon'; PlayIcon.propTypes = {iconType: PropTypes.string}; -PlayIcon.defaultProps = {iconType: 'Player'}; - -export default PlayIcon; \ No newline at end of file +PlayIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/RecordIcon.tsx b/src/Icons/Player/RecordIcon.tsx index c7c1e733..2020d6b3 100644 --- a/src/Icons/Player/RecordIcon.tsx +++ b/src/Icons/Player/RecordIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const RecordIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const RecordIcon = React.forwardRef( ); RecordIcon.displayName = 'RecordIcon'; RecordIcon.propTypes = {iconType: PropTypes.string}; -RecordIcon.defaultProps = {iconType: 'Player'}; - -export default RecordIcon; \ No newline at end of file +RecordIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/ResumeFilledIcon.tsx b/src/Icons/Player/ResumeFilledIcon.tsx index 9222dd25..dac230bb 100644 --- a/src/Icons/Player/ResumeFilledIcon.tsx +++ b/src/Icons/Player/ResumeFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ResumeFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ResumeFilledIcon = React.forwardRef( ); ResumeFilledIcon.displayName = 'ResumeFilledIcon'; ResumeFilledIcon.propTypes = {iconType: PropTypes.string}; -ResumeFilledIcon.defaultProps = {iconType: 'Player'}; - -export default ResumeFilledIcon; \ No newline at end of file +ResumeFilledIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/ResumeIcon.tsx b/src/Icons/Player/ResumeIcon.tsx index f4c7ced8..0dd18629 100644 --- a/src/Icons/Player/ResumeIcon.tsx +++ b/src/Icons/Player/ResumeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ResumeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ResumeIcon = React.forwardRef( ); ResumeIcon.displayName = 'ResumeIcon'; ResumeIcon.propTypes = {iconType: PropTypes.string}; -ResumeIcon.defaultProps = {iconType: 'Player'}; - -export default ResumeIcon; \ No newline at end of file +ResumeIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/ShuffleIcon.tsx b/src/Icons/Player/ShuffleIcon.tsx index 53a01747..a4330ba8 100644 --- a/src/Icons/Player/ShuffleIcon.tsx +++ b/src/Icons/Player/ShuffleIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const ShuffleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const ShuffleIcon = React.forwardRef( ); ShuffleIcon.displayName = 'ShuffleIcon'; ShuffleIcon.propTypes = {iconType: PropTypes.string}; -ShuffleIcon.defaultProps = {iconType: 'Player'}; - -export default ShuffleIcon; \ No newline at end of file +ShuffleIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/SpeakerLoudFIlledIcon.tsx b/src/Icons/Player/SpeakerLoudFIlledIcon.tsx index 971c1787..901d8351 100644 --- a/src/Icons/Player/SpeakerLoudFIlledIcon.tsx +++ b/src/Icons/Player/SpeakerLoudFIlledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SpeakerLoudFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpeakerLoudFilledIcon = React.forwardRef( ); SpeakerLoudFilledIcon.displayName = 'SpeakerLoudFilledIcon'; SpeakerLoudFilledIcon.propTypes = {iconType: PropTypes.string}; -SpeakerLoudFilledIcon.defaultProps = {iconType: 'Player'}; - -export default SpeakerLoudFilledIcon; \ No newline at end of file +SpeakerLoudFilledIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/SpeakerLoudIcon.tsx b/src/Icons/Player/SpeakerLoudIcon.tsx index 5c25288b..a0f7a506 100644 --- a/src/Icons/Player/SpeakerLoudIcon.tsx +++ b/src/Icons/Player/SpeakerLoudIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SpeakerLoudIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpeakerLoudIcon = React.forwardRef( ); SpeakerLoudIcon.displayName = 'SpeakerLoudIcon'; SpeakerLoudIcon.propTypes = {iconType: PropTypes.string}; -SpeakerLoudIcon.defaultProps = {iconType: 'Player'}; - -export default SpeakerLoudIcon; \ No newline at end of file +SpeakerLoudIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/SpeakerModerateFilledIcon.tsx b/src/Icons/Player/SpeakerModerateFilledIcon.tsx index e4742468..27929a24 100644 --- a/src/Icons/Player/SpeakerModerateFilledIcon.tsx +++ b/src/Icons/Player/SpeakerModerateFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SpeakerModerateFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpeakerModerateFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpeakerModerateIcon = React.forwardRef( ); SpeakerModerateIcon.displayName = 'SpeakerModerateIcon'; SpeakerModerateIcon.propTypes = {iconType: PropTypes.string}; -SpeakerModerateIcon.defaultProps = {iconType: 'Player'}; - -export default SpeakerModerateIcon; \ No newline at end of file +SpeakerModerateIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/SpeakerOffFilledIcon.tsx b/src/Icons/Player/SpeakerOffFilledIcon.tsx index beff7a42..775d04e1 100644 --- a/src/Icons/Player/SpeakerOffFilledIcon.tsx +++ b/src/Icons/Player/SpeakerOffFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SpeakerOffFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpeakerOffFilledIcon = React.forwardRef( ); SpeakerOffFilledIcon.displayName = 'SpeakerOffFilledIcon'; SpeakerOffFilledIcon.propTypes = {iconType: PropTypes.string}; -SpeakerOffFilledIcon.defaultProps = {iconType: 'Player'}; - -export default SpeakerOffFilledIcon; \ No newline at end of file +SpeakerOffFilledIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/SpeakerOffIcon.tsx b/src/Icons/Player/SpeakerOffIcon.tsx index dd64796c..af6652a2 100644 --- a/src/Icons/Player/SpeakerOffIcon.tsx +++ b/src/Icons/Player/SpeakerOffIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SpeakerOffIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpeakerOffIcon = React.forwardRef( ); SpeakerOffIcon.displayName = 'SpeakerOffIcon'; SpeakerOffIcon.propTypes = {iconType: PropTypes.string}; -SpeakerOffIcon.defaultProps = {iconType: 'Player'}; - -export default SpeakerOffIcon; \ No newline at end of file +SpeakerOffIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/SpeakerQuietFilledIcon.tsx b/src/Icons/Player/SpeakerQuietFilledIcon.tsx index f345517b..8b77d0ef 100644 --- a/src/Icons/Player/SpeakerQuietFilledIcon.tsx +++ b/src/Icons/Player/SpeakerQuietFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SpeakerQuietFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpeakerQuietFilledIcon = React.forwardRef ); SpeakerQuietFilledIcon.displayName = 'SpeakerQuietFilledIcon'; SpeakerQuietFilledIcon.propTypes = {iconType: PropTypes.string}; -SpeakerQuietFilledIcon.defaultProps = {iconType: 'Player'}; - -export default SpeakerQuietFilledIcon; \ No newline at end of file +SpeakerQuietFilledIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/SpeakerQuietIcon.tsx b/src/Icons/Player/SpeakerQuietIcon.tsx index 26242ff8..d5be6efb 100644 --- a/src/Icons/Player/SpeakerQuietIcon.tsx +++ b/src/Icons/Player/SpeakerQuietIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const SpeakerQuietIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const SpeakerQuietIcon = React.forwardRef( ); SpeakerQuietIcon.displayName = 'SpeakerQuietIcon'; SpeakerQuietIcon.propTypes = {iconType: PropTypes.string}; -SpeakerQuietIcon.defaultProps = {iconType: 'Player'}; - -export default SpeakerQuietIcon; \ No newline at end of file +SpeakerQuietIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/StopFilledIcon.tsx b/src/Icons/Player/StopFilledIcon.tsx index ed924e29..7117a1a7 100644 --- a/src/Icons/Player/StopFilledIcon.tsx +++ b/src/Icons/Player/StopFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const StopFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StopFilledIcon = React.forwardRef( ); StopFilledIcon.displayName = 'StopFilledIcon'; StopFilledIcon.propTypes = {iconType: PropTypes.string}; -StopFilledIcon.defaultProps = {iconType: 'Player'}; - -export default StopFilledIcon; \ No newline at end of file +StopFilledIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/StopIcon.tsx b/src/Icons/Player/StopIcon.tsx index 2af49420..9fd9336f 100644 --- a/src/Icons/Player/StopIcon.tsx +++ b/src/Icons/Player/StopIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const StopIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StopIcon = React.forwardRef( ); StopIcon.displayName = 'StopIcon'; StopIcon.propTypes = {iconType: PropTypes.string}; -StopIcon.defaultProps = {iconType: 'Player'}; - -export default StopIcon; \ No newline at end of file +StopIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/TrackNextFilledIcon.tsx b/src/Icons/Player/TrackNextFilledIcon.tsx index 8938ffd8..4a9ae145 100644 --- a/src/Icons/Player/TrackNextFilledIcon.tsx +++ b/src/Icons/Player/TrackNextFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TrackNextFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TrackNextFilledIcon = React.forwardRef( ); TrackNextFilledIcon.displayName = 'TrackNextFilledIcon'; TrackNextFilledIcon.propTypes = {iconType: PropTypes.string}; -TrackNextFilledIcon.defaultProps = {iconType: 'Player'}; - -export default TrackNextFilledIcon; \ No newline at end of file +TrackNextFilledIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/TrackNextIcon.tsx b/src/Icons/Player/TrackNextIcon.tsx index dec336bb..026b396a 100644 --- a/src/Icons/Player/TrackNextIcon.tsx +++ b/src/Icons/Player/TrackNextIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TrackNextIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TrackNextIcon = React.forwardRef( ); TrackNextIcon.displayName = 'TrackNextIcon'; TrackNextIcon.propTypes = {iconType: PropTypes.string}; -TrackNextIcon.defaultProps = {iconType: 'Player'}; - -export default TrackNextIcon; \ No newline at end of file +TrackNextIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Player/TrackPreviousFilledIcon.tsx b/src/Icons/Player/TrackPreviousFilledIcon.tsx index 4b4bdf47..9bb542d4 100644 --- a/src/Icons/Player/TrackPreviousFilledIcon.tsx +++ b/src/Icons/Player/TrackPreviousFilledIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TrackPreviousFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TrackPreviousFilledIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TrackPreviousIcon = React.forwardRef( ); TrackPreviousIcon.displayName = 'TrackPreviousIcon'; TrackPreviousIcon.propTypes = {iconType: PropTypes.string}; -TrackPreviousIcon.defaultProps = {iconType: 'Player'}; - -export default TrackPreviousIcon; \ No newline at end of file +TrackPreviousIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file diff --git a/src/Icons/Typography/AlignBaselineIcon.tsx b/src/Icons/Typography/AlignBaselineIcon.tsx index 5ef6d965..db199bef 100644 --- a/src/Icons/Typography/AlignBaselineIcon.tsx +++ b/src/Icons/Typography/AlignBaselineIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const AlignBaselineIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const AlignBaselineIcon = React.forwardRef( ); AlignBaselineIcon.displayName = 'AlignBaselineIcon'; AlignBaselineIcon.propTypes = {iconType: PropTypes.string}; -AlignBaselineIcon.defaultProps = {iconType: 'Typography'}; - -export default AlignBaselineIcon; \ No newline at end of file +AlignBaselineIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/DashIcon.tsx b/src/Icons/Typography/DashIcon.tsx index 68e68a6b..3410a883 100644 --- a/src/Icons/Typography/DashIcon.tsx +++ b/src/Icons/Typography/DashIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const DashIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const DashIcon = React.forwardRef( ); DashIcon.displayName = 'DashIcon'; DashIcon.propTypes = {iconType: PropTypes.string}; -DashIcon.defaultProps = {iconType: 'Typography'}; - -export default DashIcon; \ No newline at end of file +DashIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/FontBoldIcon.tsx b/src/Icons/Typography/FontBoldIcon.tsx index d64d8581..3add4c0d 100644 --- a/src/Icons/Typography/FontBoldIcon.tsx +++ b/src/Icons/Typography/FontBoldIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FontBoldIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FontBoldIcon = React.forwardRef( ); FontBoldIcon.displayName = 'FontBoldIcon'; FontBoldIcon.propTypes = {iconType: PropTypes.string}; -FontBoldIcon.defaultProps = {iconType: 'Typography'}; - -export default FontBoldIcon; \ No newline at end of file +FontBoldIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/FontFamilyIcon.tsx b/src/Icons/Typography/FontFamilyIcon.tsx index 96731a2d..76d492b6 100644 --- a/src/Icons/Typography/FontFamilyIcon.tsx +++ b/src/Icons/Typography/FontFamilyIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FontFamilyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FontFamilyIcon = React.forwardRef( ); FontFamilyIcon.displayName = 'FontFamilyIcon'; FontFamilyIcon.propTypes = {iconType: PropTypes.string}; -FontFamilyIcon.defaultProps = {iconType: 'Typography'}; - -export default FontFamilyIcon; \ No newline at end of file +FontFamilyIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/FontItalicIcon.tsx b/src/Icons/Typography/FontItalicIcon.tsx index 1ca93918..b4e0b0e4 100644 --- a/src/Icons/Typography/FontItalicIcon.tsx +++ b/src/Icons/Typography/FontItalicIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FontItalicIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FontItalicIcon = React.forwardRef( ); FontItalicIcon.displayName = 'FontItalicIcon'; FontItalicIcon.propTypes = {iconType: PropTypes.string}; -FontItalicIcon.defaultProps = {iconType: 'Typography'}; - -export default FontItalicIcon; \ No newline at end of file +FontItalicIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/FontRomanIcon.tsx b/src/Icons/Typography/FontRomanIcon.tsx index 67feb648..ec239b22 100644 --- a/src/Icons/Typography/FontRomanIcon.tsx +++ b/src/Icons/Typography/FontRomanIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FontRomanIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FontRomanIcon = React.forwardRef( ); FontRomanIcon.displayName = 'FontRomanIcon'; FontRomanIcon.propTypes = {iconType: PropTypes.string}; -FontRomanIcon.defaultProps = {iconType: 'Typography'}; - -export default FontRomanIcon; \ No newline at end of file +FontRomanIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/FontSizeIcon.tsx b/src/Icons/Typography/FontSizeIcon.tsx index 24ee8d61..09eda9ce 100644 --- a/src/Icons/Typography/FontSizeIcon.tsx +++ b/src/Icons/Typography/FontSizeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FontSizeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FontSizeIcon = React.forwardRef( ); FontSizeIcon.displayName = 'FontSizeIcon'; FontSizeIcon.propTypes = {iconType: PropTypes.string}; -FontSizeIcon.defaultProps = {iconType: 'Typography'}; - -export default FontSizeIcon; \ No newline at end of file +FontSizeIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/FontStyleIcon.tsx b/src/Icons/Typography/FontStyleIcon.tsx index ecb1e252..ea982eaf 100644 --- a/src/Icons/Typography/FontStyleIcon.tsx +++ b/src/Icons/Typography/FontStyleIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const FontStyleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const FontStyleIcon = React.forwardRef( ); FontStyleIcon.displayName = 'FontStyleIcon'; FontStyleIcon.propTypes = {iconType: PropTypes.string}; -FontStyleIcon.defaultProps = {iconType: 'Typography'}; - -export default FontStyleIcon; \ No newline at end of file +FontStyleIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/HeadingIcon.tsx b/src/Icons/Typography/HeadingIcon.tsx index 7f0bdc35..0ab8709f 100644 --- a/src/Icons/Typography/HeadingIcon.tsx +++ b/src/Icons/Typography/HeadingIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const HeadingIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const HeadingIcon = React.forwardRef( ); HeadingIcon.displayName = 'HeadingIcon'; HeadingIcon.propTypes = {iconType: PropTypes.string}; -HeadingIcon.defaultProps = {iconType: 'Typography'}; - -export default HeadingIcon; \ No newline at end of file +HeadingIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/LetterCaseCapitalizeIcon.tsx b/src/Icons/Typography/LetterCaseCapitalizeIcon.tsx index 7b9ac7ed..1d59ae35 100644 --- a/src/Icons/Typography/LetterCaseCapitalizeIcon.tsx +++ b/src/Icons/Typography/LetterCaseCapitalizeIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LetterCaseCapitalizeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LetterCaseCapitalizeIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LetterCaseLowercaseIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LetterCaseToggleIcon = React.forwardRef( ); LetterCaseToggleIcon.displayName = 'LetterCaseToggleIcon'; LetterCaseToggleIcon.propTypes = {iconType: PropTypes.string}; -LetterCaseToggleIcon.defaultProps = {iconType: 'Typography'}; - -export default LetterCaseToggleIcon; \ No newline at end of file +LetterCaseToggleIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/LetterCaseUppercaseIcon.tsx b/src/Icons/Typography/LetterCaseUppercaseIcon.tsx index 7aeb363b..a2d03143 100644 --- a/src/Icons/Typography/LetterCaseUppercaseIcon.tsx +++ b/src/Icons/Typography/LetterCaseUppercaseIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LetterCaseUppercaseIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LetterCaseUppercaseIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LetterSpacingIcon = React.forwardRef( ); LetterSpacingIcon.displayName = 'LetterSpacingIcon'; LetterSpacingIcon.propTypes = {iconType: PropTypes.string}; -LetterSpacingIcon.defaultProps = {iconType: 'Typography'}; - -export default LetterSpacingIcon; \ No newline at end of file +LetterSpacingIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/LineHeightIcon.tsx b/src/Icons/Typography/LineHeightIcon.tsx index ff121fd2..d22762ac 100644 --- a/src/Icons/Typography/LineHeightIcon.tsx +++ b/src/Icons/Typography/LineHeightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const LineHeightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const LineHeightIcon = React.forwardRef( ); LineHeightIcon.displayName = 'LineHeightIcon'; LineHeightIcon.propTypes = {iconType: PropTypes.string}; -LineHeightIcon.defaultProps = {iconType: 'Typography'}; - -export default LineHeightIcon; \ No newline at end of file +LineHeightIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/OverlineIcon.tsx b/src/Icons/Typography/OverlineIcon.tsx index 3375fae5..61e2a7bb 100644 --- a/src/Icons/Typography/OverlineIcon.tsx +++ b/src/Icons/Typography/OverlineIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const OverlineIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const OverlineIcon = React.forwardRef( ); OverlineIcon.displayName = 'OverlineIcon'; OverlineIcon.propTypes = {iconType: PropTypes.string}; -OverlineIcon.defaultProps = {iconType: 'Typography'}; - -export default OverlineIcon; \ No newline at end of file +OverlineIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/PilcrowIcon.tsx b/src/Icons/Typography/PilcrowIcon.tsx index 36518637..5a9f856f 100644 --- a/src/Icons/Typography/PilcrowIcon.tsx +++ b/src/Icons/Typography/PilcrowIcon.tsx @@ -1,14 +1,12 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const PilcrowIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { - return ; + return ; } ); PilcrowIcon.displayName = 'PilcrowIcon'; PilcrowIcon.propTypes = {iconType: PropTypes.string}; -PilcrowIcon.defaultProps = {iconType: 'Typography'}; - -export default PilcrowIcon; \ No newline at end of file +PilcrowIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/StrikethroughIcon.tsx b/src/Icons/Typography/StrikethroughIcon.tsx index 752ab717..3e906e20 100644 --- a/src/Icons/Typography/StrikethroughIcon.tsx +++ b/src/Icons/Typography/StrikethroughIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const StrikethroughIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const StrikethroughIcon = React.forwardRef( ); StrikethroughIcon.displayName = 'StrikethroughIcon'; StrikethroughIcon.propTypes = {iconType: PropTypes.string}; -StrikethroughIcon.defaultProps = {iconType: 'Typography'}; - -export default StrikethroughIcon; \ No newline at end of file +StrikethroughIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextAlignBottomIcon.tsx b/src/Icons/Typography/TextAlignBottomIcon.tsx index 1bae17cb..be52f266 100644 --- a/src/Icons/Typography/TextAlignBottomIcon.tsx +++ b/src/Icons/Typography/TextAlignBottomIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextAlignBottomIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextAlignBottomIcon = React.forwardRef( ); TextAlignBottomIcon.displayName = 'TextAlignBottomIcon'; TextAlignBottomIcon.propTypes = {iconType: PropTypes.string}; -TextAlignBottomIcon.defaultProps = {iconType: 'Typography'}; - -export default TextAlignBottomIcon; \ No newline at end of file +TextAlignBottomIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextAlignCenterIcon.tsx b/src/Icons/Typography/TextAlignCenterIcon.tsx index 9ea03b04..340ae02b 100644 --- a/src/Icons/Typography/TextAlignCenterIcon.tsx +++ b/src/Icons/Typography/TextAlignCenterIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextAlignCenterIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextAlignCenterIcon = React.forwardRef( ); TextAlignCenterIcon.displayName = 'TextAlignCenterIcon'; TextAlignCenterIcon.propTypes = {iconType: PropTypes.string}; -TextAlignCenterIcon.defaultProps = {iconType: 'Typography'}; - -export default TextAlignCenterIcon; \ No newline at end of file +TextAlignCenterIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextAlignJustifyIcon.tsx b/src/Icons/Typography/TextAlignJustifyIcon.tsx index 1d39daef..12ea6457 100644 --- a/src/Icons/Typography/TextAlignJustifyIcon.tsx +++ b/src/Icons/Typography/TextAlignJustifyIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextAlignJustifyIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextAlignJustifyIcon = React.forwardRef( ); TextAlignJustifyIcon.displayName = 'TextAlignJustifyIcon'; TextAlignJustifyIcon.propTypes = {iconType: PropTypes.string}; -TextAlignJustifyIcon.defaultProps = {iconType: 'Typography'}; - -export default TextAlignJustifyIcon; \ No newline at end of file +TextAlignJustifyIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextAlignLeftIcon.tsx b/src/Icons/Typography/TextAlignLeftIcon.tsx index 8f023dad..85c5e992 100644 --- a/src/Icons/Typography/TextAlignLeftIcon.tsx +++ b/src/Icons/Typography/TextAlignLeftIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextAlignLeftIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextAlignLeftIcon = React.forwardRef( ); TextAlignLeftIcon.displayName = 'TextAlignLeftIcon'; TextAlignLeftIcon.propTypes = {iconType: PropTypes.string}; -TextAlignLeftIcon.defaultProps = {iconType: 'Typography'}; - -export default TextAlignLeftIcon; \ No newline at end of file +TextAlignLeftIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextAlignMiddleIcon.tsx b/src/Icons/Typography/TextAlignMiddleIcon.tsx index 9aecadee..ef9cc2e1 100644 --- a/src/Icons/Typography/TextAlignMiddleIcon.tsx +++ b/src/Icons/Typography/TextAlignMiddleIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextAlignMiddleIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextAlignMiddleIcon = React.forwardRef( ); TextAlignMiddleIcon.displayName = 'TextAlignMiddleIcon'; TextAlignMiddleIcon.propTypes = {iconType: PropTypes.string}; -TextAlignMiddleIcon.defaultProps = {iconType: 'Typography'}; - -export default TextAlignMiddleIcon; \ No newline at end of file +TextAlignMiddleIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextAlignRightIcon.tsx b/src/Icons/Typography/TextAlignRightIcon.tsx index 00d5c0b0..83c27844 100644 --- a/src/Icons/Typography/TextAlignRightIcon.tsx +++ b/src/Icons/Typography/TextAlignRightIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextAlignRightIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextAlignRightIcon = React.forwardRef( ); TextAlignRightIcon.displayName = 'TextAlignRightIcon'; TextAlignRightIcon.propTypes = {iconType: PropTypes.string}; -TextAlignRightIcon.defaultProps = {iconType: 'Typography'}; - -export default TextAlignRightIcon; \ No newline at end of file +TextAlignRightIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextAlignTopIcon.tsx b/src/Icons/Typography/TextAlignTopIcon.tsx index 6a10d5e7..e3e92981 100644 --- a/src/Icons/Typography/TextAlignTopIcon.tsx +++ b/src/Icons/Typography/TextAlignTopIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextAlignTopIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextAlignTopIcon = React.forwardRef( ); TextAlignTopIcon.displayName = 'TextAlignTopIcon'; TextAlignTopIcon.propTypes = {iconType: PropTypes.string}; -TextAlignTopIcon.defaultProps = {iconType: 'Typography'}; - -export default TextAlignTopIcon; \ No newline at end of file +TextAlignTopIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextIcon.tsx b/src/Icons/Typography/TextIcon.tsx index c08d1d4a..686b8a59 100644 --- a/src/Icons/Typography/TextIcon.tsx +++ b/src/Icons/Typography/TextIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextIcon = React.forwardRef( ); TextIcon.displayName = 'TextIcon'; TextIcon.propTypes = {iconType: PropTypes.string}; -TextIcon.defaultProps = {iconType: 'Typography'}; - -export default TextIcon; \ No newline at end of file +TextIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/TextNoneIcon.tsx b/src/Icons/Typography/TextNoneIcon.tsx index 99d82fdb..97cf6665 100644 --- a/src/Icons/Typography/TextNoneIcon.tsx +++ b/src/Icons/Typography/TextNoneIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const TextNoneIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const TextNoneIcon = React.forwardRef( ); TextNoneIcon.displayName = 'TextNoneIcon'; TextNoneIcon.propTypes = {iconType: PropTypes.string}; -TextNoneIcon.defaultProps = {iconType: 'Typography'}; - -export default TextNoneIcon; \ No newline at end of file +TextNoneIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/Typography/UnderlineIcon.tsx b/src/Icons/Typography/UnderlineIcon.tsx index a4eb4e21..abe6d254 100644 --- a/src/Icons/Typography/UnderlineIcon.tsx +++ b/src/Icons/Typography/UnderlineIcon.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; import {IconProps} from '../types'; -import PropTypes from 'prop-types'; +import * as PropTypes from 'prop-types'; export const UnderlineIcon = React.forwardRef( ({color = 'currentColor', iconType = 'Typography', ...props}, forwardedRef) => { @@ -9,6 +9,4 @@ export const UnderlineIcon = React.forwardRef( ); UnderlineIcon.displayName = 'UnderlineIcon'; UnderlineIcon.propTypes = {iconType: PropTypes.string}; -UnderlineIcon.defaultProps = {iconType: 'Typography'}; - -export default UnderlineIcon; \ No newline at end of file +UnderlineIcon.defaultProps = {iconType: 'Typography'}; \ No newline at end of file diff --git a/src/Icons/index.ts b/src/Icons/index.ts index 621dfea8..cc2cf2a8 100644 --- a/src/Icons/index.ts +++ b/src/Icons/index.ts @@ -1,338 +1,339 @@ -export {default as AccessibilityIcon} from './Abstract/AccessibilityIcon'; -export {default as ActivityLogIcon} from './Components/ActivityLogIcon'; -export {default as AlignBaselineIcon} from './Typography/AlignBaselineIcon'; -export {default as AlignBottomIcon} from './Alignment/AlignBottomIcon'; -export {default as AlignCenterHorizontallyIcon} from './Alignment/AlignCenterHorizontallyIcon'; -export {default as AlignCenterVerticallyIcon} from './Alignment/AlignCenterVerticallyIcon'; -export {default as AlignLeftIcon} from './Alignment/AlignLeftIcon'; -export {default as AlignRightIcon} from './Alignment/AlignRightIcon'; -export {default as AlignTopIcon} from './Alignment/AlignTopIcon'; -export {default as AllSidesIcon} from './Arrows/AllSidesIcon'; -export {default as AngleIcon} from './Design/AngleIcon'; -export {default as ArchiveIcon} from './Objects/ArchiveIcon'; -export {default as ArrowBottomLeftIcon} from './Arrows/ArrowBottomLeftIcon'; -export {default as ArrowBottomRightIcon} from './Arrows/ArrowBottomRightIcon'; -export {default as ArrowDownIcon} from './Arrows/ArrowDownIcon'; -export {default as ArrowLeftIcon} from './Arrows/ArrowLeftIcon'; -export {default as ArrowRightIcon} from './Arrows/ArrowRightIcon'; -export {default as ArrowTopLeftIcon} from './Arrows/ArrowTopLeftIcon'; -export {default as ArrowTopRightIcon} from './Arrows/ArrowTopRightIcon'; -export {default as ArrowUpIcon} from './Arrows/ArrowUpIcon'; -export {default as AspectRatioIcon} from './Components/AspectRatioIcon'; -export {default as AvatarIcon} from './Components/AvatarIcon'; -export {default as BackpackIcon} from './Objects/BackpackIcon'; -export {default as BadgeIcon} from './Components/BadgeIcon'; -export {default as BarChartIcon} from './Components/BarChartIcon'; -export {default as BellIcon} from './Objects/BellIcon'; -export {default as BilibiliHelperLogoIcon} from './Logos/BilibiliHelperLogoIcon'; -export {default as BilibiliMusicLogoIcon} from './Logos/BilibiliMusicLogoIcon'; -export {default as BilibilihelperTextIcon} from './Logos/BilibilihelperTextIcon'; -export {default as BlendingModeIcon} from './Design/BlendingModeIcon'; -export {default as BookmarkIcon} from './Objects/BookmarkIcon'; -export {default as BookmarkFilledIcon} from './Objects/BookmarkFilledIcon'; -export {default as BorderAllIcon} from './Borders/BorderAllIcon'; -export {default as BorderBottomIcon} from './Borders/BorderBottomIcon'; -export {default as BorderLeftIcon} from './Borders/BorderLeftIcon'; -export {default as BorderNoneIcon} from './Borders/BorderNoneIcon'; -export {default as BorderRightIcon} from './Borders/BorderRightIcon'; -export {default as BorderSplitIcon} from './Borders/BorderSplitIcon'; -export {default as BorderStyleIcon} from './Borders/BorderStyleIcon'; -export {default as BorderTopIcon} from './Borders/BorderTopIcon'; -export {default as BoxIcon} from './Components/BoxIcon'; -export {default as BoxModelIcon} from './Design/BoxModelIcon'; -export {default as ButtonIcon} from './Components/ButtonIcon'; -export {default as CalendarIcon} from './Components/CalendarIcon'; -export {default as CameraIcon} from './Objects/CameraIcon'; -export {default as CardStackIcon} from './Objects/CardStackIcon'; -export {default as CardStackMinusIcon} from './Objects/CardStackMinusIcon'; -export {default as CardStackPlusIcon} from './Objects/CardStackPlusIcon'; -export {default as CaretDownIcon} from './Arrows/CaretDownIcon'; -export {default as CaretLeftIcon} from './Arrows/CaretLeftIcon'; -export {default as CaretRightIcon} from './Arrows/CaretRightIcon'; -export {default as CaretSortIcon} from './Arrows/CaretSortIcon'; -export {default as CaretUpIcon} from './Arrows/CaretUpIcon'; -export {default as ChatBubbleIcon} from './Objects/ChatBubbleIcon'; -export {default as CheckIcon} from './Abstract/CheckIcon'; -export {default as CheckCircledIcon} from './Abstract/CheckCircledIcon'; -export {default as CheckboxIcon} from './Components/CheckboxIcon'; -export {default as ChevronDownIcon} from './Arrows/ChevronDownIcon'; -export {default as ChevronLeftIcon} from './Arrows/ChevronLeftIcon'; -export {default as ChevronRightIcon} from './Arrows/ChevronRightIcon'; -export {default as ChevronUpIcon} from './Arrows/ChevronUpIcon'; -export {default as CircleIcon} from './Abstract/CircleIcon'; -export {default as CircleBackslashIcon} from './Abstract/CircleBackslashIcon'; -export {default as ClipboardIcon} from './Objects/ClipboardIcon'; -export {default as ClipboardCopyIcon} from './Objects/ClipboardCopyIcon'; -export {default as ClockIcon} from './Objects/ClockIcon'; -export {default as CodeIcon} from './Components/CodeIcon'; -export {default as CodeSandboxLogoIcon} from './Logos/CodeSandboxLogoIcon'; -export {default as ColorWheelIcon} from './Design/ColorWheelIcon'; -export {default as ColumnSpacingIcon} from './Design/ColumnSpacingIcon'; -export {default as ColumnsIcon} from './Design/ColumnsIcon'; -export {default as CommitIcon} from './Abstract/CommitIcon'; -export {default as Component1Icon} from './Design/Component1Icon'; -export {default as Component2Icon} from './Design/Component2Icon'; -export {default as ComponentBooleanIcon} from './Design/ComponentBooleanIcon'; -export {default as ComponentInstanceIcon} from './Design/ComponentInstanceIcon'; -export {default as ComponentNoneIcon} from './Design/ComponentNoneIcon'; -export {default as ComponentPlaceholderIcon} from './Design/ComponentPlaceholderIcon'; -export {default as ContainerIcon} from './Components/ContainerIcon'; -export {default as CookieIcon} from './Objects/CookieIcon'; -export {default as CopyIcon} from './Abstract/CopyIcon'; -export {default as CornerBottomLeftIcon} from './Corners/CornerBottomLeftIcon'; -export {default as CornerBottomRightIcon} from './Corners/CornerBottomRightIcon'; -export {default as CornerTopLeftIcon} from './Corners/CornerTopLeftIcon'; -export {default as CornerTopRightIcon} from './Corners/CornerTopRightIcon'; -export {default as CornersIcon} from './Corners/CornersIcon'; -export {default as CountdownTimerIcon} from './Objects/CountdownTimerIcon'; -export {default as CounterClockwiseClockIcon} from './Objects/CounterClockwiseClockIcon'; -export {default as CropIcon} from './Design/CropIcon'; -export {default as Cross1Icon} from './Abstract/Cross1Icon'; -export {default as Cross2Icon} from './Abstract/Cross2Icon'; -export {default as CrossCircledIcon} from './Abstract/CrossCircledIcon'; -export {default as Crosshair1Icon} from './Objects/Crosshair1Icon'; -export {default as Crosshair2Icon} from './Objects/Crosshair2Icon'; -export {default as CrumpledPaperIcon} from './Objects/CrumpledPaperIcon'; -export {default as CubeIcon} from './Objects/CubeIcon'; -export {default as CursorArrowIcon} from './Design/CursorArrowIcon'; -export {default as CursorTextIcon} from './Design/CursorTextIcon'; -export {default as DashIcon} from './Typography/DashIcon'; -export {default as DashboardIcon} from './Components/DashboardIcon'; -export {default as DashedIcon} from './Lines/DashedIcon'; -export {default as DesktopIcon} from './Objects/DesktopIcon'; -export {default as DimensionsIcon} from './Design/DimensionsIcon'; -export {default as DiscIcon} from './Objects/DiscIcon'; -export {default as DiscordLogoIcon} from './Logos/DiscordLogoIcon'; -export {default as DividerHorizontalIcon} from './Components/DividerHorizontalIcon'; -export {default as DividerVerticalIcon} from './Components/DividerVerticalIcon'; -export {default as DotIcon} from './Abstract/DotIcon'; -export {default as DotFilledIcon} from './Abstract/DotFilledIcon'; -export {default as DotsHorizontalIcon} from './Abstract/DotsHorizontalIcon'; -export {default as DotsVerticalIcon} from './Abstract/DotsVerticalIcon'; -export {default as DottedIcon} from './Lines/DottedIcon'; -export {default as DoubleArrowDownIcon} from './Arrows/DoubleArrowDownIcon'; -export {default as DoubleArrowLeftIcon} from './Arrows/DoubleArrowLeftIcon'; -export {default as DoubleArrowRightIcon} from './Arrows/DoubleArrowRightIcon'; -export {default as DoubleArrowUpIcon} from './Arrows/DoubleArrowUpIcon'; -export {default as DownloadIcon} from './Abstract/DownloadIcon'; -export {default as DragHandleDots1Icon} from './Abstract/DragHandleDots1Icon'; -export {default as DragHandleDots2Icon} from './Abstract/DragHandleDots2Icon'; -export {default as DragHandleHorizontalIcon} from './Abstract/DragHandleHorizontalIcon'; -export {default as DragHandleVerticalIcon} from './Abstract/DragHandleVerticalIcon'; -export {default as DrawingPinIcon} from './Objects/DrawingPinIcon'; -export {default as DrawingPinFilledIcon} from './Objects/DrawingPinFilledIcon'; -export {default as DropdownMenuIcon} from './Components/DropdownMenuIcon'; -export {default as EnterIcon} from './Abstract/EnterIcon'; -export {default as EnterFullScreenIcon} from './Abstract/EnterFullScreenIcon'; -export {default as EnvelopeClosedIcon} from './Objects/EnvelopeClosedIcon'; -export {default as EnvelopeOpenIcon} from './Objects/EnvelopeOpenIcon'; -export {default as EraserIcon} from './Objects/EraserIcon'; -export {default as ExclamationTriangleIcon} from './Abstract/ExclamationTriangleIcon'; -export {default as ExitIcon} from './Abstract/ExitIcon'; -export {default as ExitFullScreenIcon} from './Abstract/ExitFullScreenIcon'; -export {default as ExternalLinkIcon} from './Abstract/ExternalLinkIcon'; -export {default as EyeClosedIcon} from './Objects/EyeClosedIcon'; -export {default as EyeNoneIcon} from './Objects/EyeNoneIcon'; -export {default as EyeOpenIcon} from './Objects/EyeOpenIcon'; -export {default as FaceIcon} from './Objects/FaceIcon'; -export {default as FigmaLogoIcon} from './Logos/FigmaLogoIcon'; -export {default as FileIcon} from './Objects/FileIcon'; -export {default as FileMinusIcon} from './Objects/FileMinusIcon'; -export {default as FilePlusIcon} from './Objects/FilePlusIcon'; -export {default as FileTextIcon} from './Objects/FileTextIcon'; -export {default as FontBoldIcon} from './Typography/FontBoldIcon'; -export {default as FontFamilyIcon} from './Typography/FontFamilyIcon'; -export {default as FontItalicIcon} from './Typography/FontItalicIcon'; -export {default as FontRomanIcon} from './Typography/FontRomanIcon'; -export {default as FontSizeIcon} from './Typography/FontSizeIcon'; -export {default as FontStyleIcon} from './Typography/FontStyleIcon'; -export {default as FrameIcon} from './Design/FrameIcon'; -export {default as FramerLogoIcon} from './Logos/FramerLogoIcon'; -export {default as GearIcon} from './Objects/GearIcon'; -export {default as GitHubLogoIcon} from './Logos/GitHubLogoIcon'; -export {default as GlobeIcon} from './Objects/GlobeIcon'; -export {default as GridIcon} from './Components/GridIcon'; -export {default as GroupIcon} from './Design/GroupIcon'; -export {default as Half1Icon} from './Abstract/Half1Icon'; -export {default as Half2Icon} from './Abstract/Half2Icon'; -export {default as HamburgerMenuIcon} from './Abstract/HamburgerMenuIcon'; -export {default as HandIcon} from './Objects/HandIcon'; -export {default as HeadingIcon} from './Typography/HeadingIcon'; -export {default as HeartIcon} from './Objects/HeartIcon'; -export {default as HeartFilledIcon} from './Objects/HeartFilledIcon'; -export {default as HeightIcon} from './Arrows/HeightIcon'; -export {default as HobbyKnifeIcon} from './Objects/HobbyKnifeIcon'; -export {default as HomeIcon} from './Objects/HomeIcon'; -export {default as IconJarLogoIcon} from './Logos/IconJarLogoIcon'; -export {default as IconfontLogoIcon} from './Logos/IconfontLogoIcon'; -export {default as IdCardIcon} from './Objects/IdCardIcon'; -export {default as ImageIcon} from './Components/ImageIcon'; -export {default as InfoCircledIcon} from './Abstract/InfoCircledIcon'; -export {default as InputIcon} from './Components/InputIcon'; -export {default as InstagramLogoIcon} from './Logos/InstagramLogoIcon'; -export {default as KeyboardIcon} from './Objects/KeyboardIcon'; -export {default as LapTimerIcon} from './Objects/LapTimerIcon'; -export {default as LaptopIcon} from './Objects/LaptopIcon'; -export {default as LayersIcon} from './Design/LayersIcon'; -export {default as LayoutIcon} from './Components/LayoutIcon'; -export {default as LeftWingIcon} from './Objects/LeftWingIcon'; -export {default as LetterCaseCapitalizeIcon} from './Typography/LetterCaseCapitalizeIcon'; -export {default as LetterCaseLowercaseIcon} from './Typography/LetterCaseLowercaseIcon'; -export {default as LetterCaseToggleIcon} from './Typography/LetterCaseToggleIcon'; -export {default as LetterCaseUppercaseIcon} from './Typography/LetterCaseUppercaseIcon'; -export {default as LetterSpacingIcon} from './Typography/LetterSpacingIcon'; -export {default as LightningBoltIcon} from './Objects/LightningBoltIcon'; -export {default as LineHeightIcon} from './Typography/LineHeightIcon'; -export {default as LineWidthIcon} from './Lines/LineWidthIcon'; -export {default as Link1Icon} from './Objects/Link1Icon'; -export {default as Link2Icon} from './Objects/Link2Icon'; -export {default as LinkBreak1Icon} from './Objects/LinkBreak1Icon'; -export {default as LinkBreak2Icon} from './Objects/LinkBreak2Icon'; -export {default as LinkNone1Icon} from './Objects/LinkNone1Icon'; -export {default as LinkNone2Icon} from './Objects/LinkNone2Icon'; -export {default as LinkedInLogoIcon} from './Logos/LinkedInLogoIcon'; -export {default as ListBulletIcon} from './Components/ListBulletIcon'; -export {default as LockClosedIcon} from './Objects/LockClosedIcon'; -export {default as LockOpen1Icon} from './Objects/LockOpen1Icon'; -export {default as LockOpen2Icon} from './Objects/LockOpen2Icon'; -export {default as LoopIcon} from './Player/LoopIcon'; -export {default as LoopOneIcon} from './Player/LoopOneIcon'; -export {default as MagicWandIcon} from './Objects/MagicWandIcon'; -export {default as MagnifierIcon} from './Objects/MagnifierIcon'; -export {default as MagnifyingGlassIcon} from './Objects/MagnifyingGlassIcon'; -export {default as MarginIcon} from './Design/MarginIcon'; -export {default as MaskOffIcon} from './Design/MaskOffIcon'; -export {default as MaskOnIcon} from './Design/MaskOnIcon'; -export {default as MinusIcon} from './Abstract/MinusIcon'; -export {default as MinusCircledIcon} from './Abstract/MinusCircledIcon'; -export {default as MixIcon} from './Objects/MixIcon'; -export {default as MixerHorizontalIcon} from './Objects/MixerHorizontalIcon'; -export {default as MixerVerticalIcon} from './Objects/MixerVerticalIcon'; -export {default as MobileIcon} from './Objects/MobileIcon'; -export {default as ModulzLogoIcon} from './Logos/ModulzLogoIcon'; -export {default as MoonIcon} from './Objects/MoonIcon'; -export {default as MoveIcon} from './Arrows/MoveIcon'; -export {default as NotionLogoIcon} from './Logos/NotionLogoIcon'; -export {default as OpacityIcon} from './Design/OpacityIcon'; -export {default as OpenInNewWindowIcon} from './Abstract/OpenInNewWindowIcon'; -export {default as OverlineIcon} from './Typography/OverlineIcon'; -export {default as PaddingIcon} from './Design/PaddingIcon'; -export {default as PaperPlaneIcon} from './Objects/PaperPlaneIcon'; -export {default as PauseIcon} from './Player/PauseIcon'; -export {default as Pencil1Icon} from './Objects/Pencil1Icon'; -export {default as Pencil2Icon} from './Objects/Pencil2Icon'; -export {default as PersonIcon} from './Objects/PersonIcon'; -export {default as PieChartIcon} from './Components/PieChartIcon'; -export {default as PilcrowIcon} from './Typography/PilcrowIcon'; -export {default as PinBottomIcon} from './Alignment/PinBottomIcon'; -export {default as PinLeftIcon} from './Alignment/PinLeftIcon'; -export {default as PinRightIcon} from './Alignment/PinRightIcon'; -export {default as PinTopIcon} from './Alignment/PinTopIcon'; -export {default as PlayIcon} from './Player/PlayIcon'; -export {default as PlayFilledIcon} from './Player/PlayFilledIcon'; -export {default as PlusIcon} from './Abstract/PlusIcon'; -export {default as PlusCircledIcon} from './Abstract/PlusCircledIcon'; -export {default as QuestionMarkIcon} from './Abstract/QuestionMarkIcon'; -export {default as QuestionMarkCircledIcon} from './Abstract/QuestionMarkCircledIcon'; -export {default as QuoteIcon} from './Components/QuoteIcon'; -export {default as RadiobuttonIcon} from './Components/RadiobuttonIcon'; -export {default as ReactLogoIcon} from './Logos/ReactLogoIcon'; -export {default as ReaderIcon} from './Objects/ReaderIcon'; -export {default as RecordIcon} from './Player/RecordIcon'; -export {default as ReloadIcon} from './Abstract/ReloadIcon'; -export {default as ResetIcon} from './Abstract/ResetIcon'; -export {default as ResumeIcon} from './Player/ResumeIcon'; -export {default as ResumeFilledIcon} from './Player/ResumeFilledIcon'; -export {default as RightWingIcon} from './Objects/RightWingIcon'; -export {default as RocketIcon} from './Objects/RocketIcon'; -export {default as RotateCounterClockwiseIcon} from './Design/RotateCounterClockwiseIcon'; -export {default as RowSpacingIcon} from './Design/RowSpacingIcon'; -export {default as RowsIcon} from './Design/RowsIcon'; -export {default as RulerHorizontalIcon} from './Objects/RulerHorizontalIcon'; -export {default as RulerSquareIcon} from './Objects/RulerSquareIcon'; -export {default as ScissorsIcon} from './Objects/ScissorsIcon'; -export {default as SectionIcon} from './Components/SectionIcon'; -export {default as SewingPinIcon} from './Objects/SewingPinIcon'; -export {default as SewingPinFilledIcon} from './Objects/SewingPinFilledIcon'; -export {default as ShadowIcon} from './Design/ShadowIcon'; -export {default as ShadowInnerIcon} from './Design/ShadowInnerIcon'; -export {default as ShadowNoneIcon} from './Design/ShadowNoneIcon'; -export {default as ShadowOuterIcon} from './Design/ShadowOuterIcon'; -export {default as Share1Icon} from './Abstract/Share1Icon'; -export {default as Share2Icon} from './Abstract/Share2Icon'; -export {default as ShuffleIcon} from './Player/ShuffleIcon'; -export {default as SizeIcon} from './Arrows/SizeIcon'; -export {default as SketchColorLogoIcon} from './Logos/SketchColorLogoIcon'; -export {default as SketchLogoIcon} from './Logos/SketchLogoIcon'; -export {default as SlashIcon} from './Abstract/SlashIcon'; -export {default as SliderIcon} from './Components/SliderIcon'; -export {default as SolidIcon} from './Lines/SolidIcon'; -export {default as SpaceBetweenHorizontallyIcon} from './Alignment/SpaceBetweenHorizontallyIcon'; -export {default as SpaceBetweenVerticallyIcon} from './Alignment/SpaceBetweenVerticallyIcon'; -export {default as SpaceEvenlyHorizontallyIcon} from './Alignment/SpaceEvenlyHorizontallyIcon'; -export {default as SpaceEvenlyVerticallyIcon} from './Alignment/SpaceEvenlyVerticallyIcon'; -export {default as SpeakerLoudIcon} from './Player/SpeakerLoudIcon'; -export {default as SpeakerLoudFilledIcon} from './Player/SpeakerLoudFilledIcon'; -export {default as SpeakerModerateIcon} from './Player/SpeakerModerateIcon'; -export {default as SpeakerModerateFilledIcon} from './Player/SpeakerModerateFilledIcon'; -export {default as SpeakerOffIcon} from './Player/SpeakerOffIcon'; -export {default as SpeakerOffFilledIcon} from './Player/SpeakerOffFilledIcon'; -export {default as SpeakerQuietIcon} from './Player/SpeakerQuietIcon'; -export {default as SpeakerQuietFilledIcon} from './Player/SpeakerQuietFilledIcon'; -export {default as SquareIcon} from './Abstract/SquareIcon'; -export {default as StackIcon} from './Design/StackIcon'; -export {default as StarIcon} from './Objects/StarIcon'; -export {default as StarFilledIcon} from './Objects/StarFilledIcon'; -export {default as StitchesLogoIcon} from './Logos/StitchesLogoIcon'; -export {default as StopIcon} from './Player/StopIcon'; -export {default as StopFilledIcon} from './Player/StopFilledIcon'; -export {default as StopwatchIcon} from './Objects/StopwatchIcon'; -export {default as StretchHorizontallyIcon} from './Alignment/StretchHorizontallyIcon'; -export {default as StretchVerticallyIcon} from './Alignment/StretchVerticallyIcon'; -export {default as StrikethroughIcon} from './Typography/StrikethroughIcon'; -export {default as SunIcon} from './Objects/SunIcon'; -export {default as SwitchIcon} from './Components/SwitchIcon'; -export {default as SymbolIcon} from './Design/SymbolIcon'; -export {default as TableIcon} from './Components/TableIcon'; -export {default as TargetIcon} from './Objects/TargetIcon'; -export {default as TextIcon} from './Typography/TextIcon'; -export {default as TextAlignBottomIcon} from './Typography/TextAlignBottomIcon'; -export {default as TextAlignCenterIcon} from './Typography/TextAlignCenterIcon'; -export {default as TextAlignJustifyIcon} from './Typography/TextAlignJustifyIcon'; -export {default as TextAlignLeftIcon} from './Typography/TextAlignLeftIcon'; -export {default as TextAlignMiddleIcon} from './Typography/TextAlignMiddleIcon'; -export {default as TextAlignRightIcon} from './Typography/TextAlignRightIcon'; -export {default as TextAlignTopIcon} from './Typography/TextAlignTopIcon'; -export {default as TextNoneIcon} from './Typography/TextNoneIcon'; -export {default as ThickArrowDownIcon} from './Arrows/ThickArrowDownIcon'; -export {default as ThickArrowLeftIcon} from './Arrows/ThickArrowLeftIcon'; -export {default as ThickArrowRightIcon} from './Arrows/ThickArrowRightIcon'; -export {default as ThickArrowUpIcon} from './Arrows/ThickArrowUpIcon'; -export {default as TimerIcon} from './Objects/TimerIcon'; -export {default as TokensIcon} from './Design/TokensIcon'; -export {default as TrackNextIcon} from './Player/TrackNextIcon'; -export {default as TrackNextFilledIcon} from './Player/TrackNextFilledIcon'; -export {default as TrackPreviousIcon} from './Player/TrackPreviousIcon'; -export {default as TrackPreviousFilledIcon} from './Player/TrackPreviousFilledIcon'; -export {default as TransformIcon} from './Design/TransformIcon'; -export {default as TransparencyGridIcon} from './Design/TransparencyGridIcon'; -export {default as TrashIcon} from './Objects/TrashIcon'; -export {default as TriangleDownIcon} from './Arrows/TriangleDownIcon'; -export {default as TriangleLeftIcon} from './Arrows/TriangleLeftIcon'; -export {default as TriangleRightIcon} from './Arrows/TriangleRightIcon'; -export {default as TriangleUpIcon} from './Arrows/TriangleUpIcon'; -export {default as TwitterLogoIcon} from './Logos/TwitterLogoIcon'; -export {default as UnderlineIcon} from './Typography/UnderlineIcon'; -export {default as UpdateIcon} from './Abstract/UpdateIcon'; -export {default as UploadIcon} from './Abstract/UploadIcon'; -export {default as ValueIcon} from './Design/ValueIcon'; -export {default as ValueNoneIcon} from './Design/ValueNoneIcon'; -export {default as VercelLogoIcon} from './Logos/VercelLogoIcon'; -export {default as VideoIcon} from './Components/VideoIcon'; -export {default as ViewGridIcon} from './Abstract/ViewGridIcon'; -export {default as ViewHorizontalIcon} from './Abstract/ViewHorizontalIcon'; -export {default as ViewNoneIcon} from './Abstract/ViewNoneIcon'; -export {default as ViewVerticalIcon} from './Abstract/ViewVerticalIcon'; -export {default as WidthIcon} from './Arrows/WidthIcon'; -export {default as ZoomInIcon} from './Design/ZoomInIcon'; -export {default as ZoomOutIcon} from './Design/ZoomOutIcon'; \ No newline at end of file +export {AccessibilityIcon} from './Abstract/AccessibilityIcon'; +export {AcgboxTextIcon} from './Logos/AcgboxTextIcon'; +export {ActivityLogIcon} from './Components/ActivityLogIcon'; +export {AlignBaselineIcon} from './Typography/AlignBaselineIcon'; +export {AlignBottomIcon} from './Alignment/AlignBottomIcon'; +export {AlignCenterHorizontallyIcon} from './Alignment/AlignCenterHorizontallyIcon'; +export {AlignCenterVerticallyIcon} from './Alignment/AlignCenterVerticallyIcon'; +export {AlignLeftIcon} from './Alignment/AlignLeftIcon'; +export {AlignRightIcon} from './Alignment/AlignRightIcon'; +export {AlignTopIcon} from './Alignment/AlignTopIcon'; +export {AllSidesIcon} from './Arrows/AllSidesIcon'; +export {AngleIcon} from './Design/AngleIcon'; +export {ArchiveIcon} from './Objects/ArchiveIcon'; +export {ArrowBottomLeftIcon} from './Arrows/ArrowBottomLeftIcon'; +export {ArrowBottomRightIcon} from './Arrows/ArrowBottomRightIcon'; +export {ArrowDownIcon} from './Arrows/ArrowDownIcon'; +export {ArrowLeftIcon} from './Arrows/ArrowLeftIcon'; +export {ArrowRightIcon} from './Arrows/ArrowRightIcon'; +export {ArrowTopLeftIcon} from './Arrows/ArrowTopLeftIcon'; +export {ArrowTopRightIcon} from './Arrows/ArrowTopRightIcon'; +export {ArrowUpIcon} from './Arrows/ArrowUpIcon'; +export {AspectRatioIcon} from './Components/AspectRatioIcon'; +export {AvatarIcon} from './Components/AvatarIcon'; +export {BackpackIcon} from './Objects/BackpackIcon'; +export {BadgeIcon} from './Components/BadgeIcon'; +export {BarChartIcon} from './Components/BarChartIcon'; +export {BellIcon} from './Objects/BellIcon'; +export {BilibiliHelperLogoIcon} from './Logos/BilibiliHelperLogoIcon'; +export {BilibiliMusicLogoIcon} from './Logos/BilibiliMusicLogoIcon'; +export {BilibilihelperTextIcon} from './Logos/BilibilihelperTextIcon'; +export {BlendingModeIcon} from './Design/BlendingModeIcon'; +export {BookmarkIcon} from './Objects/BookmarkIcon'; +export {BookmarkFilledIcon} from './Objects/BookmarkFilledIcon'; +export {BorderAllIcon} from './Borders/BorderAllIcon'; +export {BorderBottomIcon} from './Borders/BorderBottomIcon'; +export {BorderLeftIcon} from './Borders/BorderLeftIcon'; +export {BorderNoneIcon} from './Borders/BorderNoneIcon'; +export {BorderRightIcon} from './Borders/BorderRightIcon'; +export {BorderSplitIcon} from './Borders/BorderSplitIcon'; +export {BorderStyleIcon} from './Borders/BorderStyleIcon'; +export {BorderTopIcon} from './Borders/BorderTopIcon'; +export {BoxIcon} from './Components/BoxIcon'; +export {BoxModelIcon} from './Design/BoxModelIcon'; +export {ButtonIcon} from './Components/ButtonIcon'; +export {CalendarIcon} from './Components/CalendarIcon'; +export {CameraIcon} from './Objects/CameraIcon'; +export {CardStackIcon} from './Objects/CardStackIcon'; +export {CardStackMinusIcon} from './Objects/CardStackMinusIcon'; +export {CardStackPlusIcon} from './Objects/CardStackPlusIcon'; +export {CaretDownIcon} from './Arrows/CaretDownIcon'; +export {CaretLeftIcon} from './Arrows/CaretLeftIcon'; +export {CaretRightIcon} from './Arrows/CaretRightIcon'; +export {CaretSortIcon} from './Arrows/CaretSortIcon'; +export {CaretUpIcon} from './Arrows/CaretUpIcon'; +export {ChatBubbleIcon} from './Objects/ChatBubbleIcon'; +export {CheckIcon} from './Abstract/CheckIcon'; +export {CheckCircledIcon} from './Abstract/CheckCircledIcon'; +export {CheckboxIcon} from './Components/CheckboxIcon'; +export {ChevronDownIcon} from './Arrows/ChevronDownIcon'; +export {ChevronLeftIcon} from './Arrows/ChevronLeftIcon'; +export {ChevronRightIcon} from './Arrows/ChevronRightIcon'; +export {ChevronUpIcon} from './Arrows/ChevronUpIcon'; +export {CircleIcon} from './Abstract/CircleIcon'; +export {CircleBackslashIcon} from './Abstract/CircleBackslashIcon'; +export {ClipboardIcon} from './Objects/ClipboardIcon'; +export {ClipboardCopyIcon} from './Objects/ClipboardCopyIcon'; +export {ClockIcon} from './Objects/ClockIcon'; +export {CodeIcon} from './Components/CodeIcon'; +export {CodeSandboxLogoIcon} from './Logos/CodeSandboxLogoIcon'; +export {ColorWheelIcon} from './Design/ColorWheelIcon'; +export {ColumnSpacingIcon} from './Design/ColumnSpacingIcon'; +export {ColumnsIcon} from './Design/ColumnsIcon'; +export {CommitIcon} from './Abstract/CommitIcon'; +export {Component1Icon} from './Design/Component1Icon'; +export {Component2Icon} from './Design/Component2Icon'; +export {ComponentBooleanIcon} from './Design/ComponentBooleanIcon'; +export {ComponentInstanceIcon} from './Design/ComponentInstanceIcon'; +export {ComponentNoneIcon} from './Design/ComponentNoneIcon'; +export {ComponentPlaceholderIcon} from './Design/ComponentPlaceholderIcon'; +export {ContainerIcon} from './Components/ContainerIcon'; +export {CookieIcon} from './Objects/CookieIcon'; +export {CopyIcon} from './Abstract/CopyIcon'; +export {CornerBottomLeftIcon} from './Corners/CornerBottomLeftIcon'; +export {CornerBottomRightIcon} from './Corners/CornerBottomRightIcon'; +export {CornerTopLeftIcon} from './Corners/CornerTopLeftIcon'; +export {CornerTopRightIcon} from './Corners/CornerTopRightIcon'; +export {CornersIcon} from './Corners/CornersIcon'; +export {CountdownTimerIcon} from './Objects/CountdownTimerIcon'; +export {CounterClockwiseClockIcon} from './Objects/CounterClockwiseClockIcon'; +export {CropIcon} from './Design/CropIcon'; +export {Cross1Icon} from './Abstract/Cross1Icon'; +export {Cross2Icon} from './Abstract/Cross2Icon'; +export {CrossCircledIcon} from './Abstract/CrossCircledIcon'; +export {Crosshair1Icon} from './Objects/Crosshair1Icon'; +export {Crosshair2Icon} from './Objects/Crosshair2Icon'; +export {CrumpledPaperIcon} from './Objects/CrumpledPaperIcon'; +export {CubeIcon} from './Objects/CubeIcon'; +export {CursorArrowIcon} from './Design/CursorArrowIcon'; +export {CursorTextIcon} from './Design/CursorTextIcon'; +export {DashIcon} from './Typography/DashIcon'; +export {DashboardIcon} from './Components/DashboardIcon'; +export {DashedIcon} from './Lines/DashedIcon'; +export {DesktopIcon} from './Objects/DesktopIcon'; +export {DimensionsIcon} from './Design/DimensionsIcon'; +export {DiscIcon} from './Objects/DiscIcon'; +export {DiscordLogoIcon} from './Logos/DiscordLogoIcon'; +export {DividerHorizontalIcon} from './Components/DividerHorizontalIcon'; +export {DividerVerticalIcon} from './Components/DividerVerticalIcon'; +export {DotIcon} from './Abstract/DotIcon'; +export {DotFilledIcon} from './Abstract/DotFilledIcon'; +export {DotsHorizontalIcon} from './Abstract/DotsHorizontalIcon'; +export {DotsVerticalIcon} from './Abstract/DotsVerticalIcon'; +export {DottedIcon} from './Lines/DottedIcon'; +export {DoubleArrowDownIcon} from './Arrows/DoubleArrowDownIcon'; +export {DoubleArrowLeftIcon} from './Arrows/DoubleArrowLeftIcon'; +export {DoubleArrowRightIcon} from './Arrows/DoubleArrowRightIcon'; +export {DoubleArrowUpIcon} from './Arrows/DoubleArrowUpIcon'; +export {DownloadIcon} from './Abstract/DownloadIcon'; +export {DragHandleDots1Icon} from './Abstract/DragHandleDots1Icon'; +export {DragHandleDots2Icon} from './Abstract/DragHandleDots2Icon'; +export {DragHandleHorizontalIcon} from './Abstract/DragHandleHorizontalIcon'; +export {DragHandleVerticalIcon} from './Abstract/DragHandleVerticalIcon'; +export {DrawingPinIcon} from './Objects/DrawingPinIcon'; +export {DrawingPinFilledIcon} from './Objects/DrawingPinFilledIcon'; +export {DropdownMenuIcon} from './Components/DropdownMenuIcon'; +export {EnterIcon} from './Abstract/EnterIcon'; +export {EnterFullScreenIcon} from './Abstract/EnterFullScreenIcon'; +export {EnvelopeClosedIcon} from './Objects/EnvelopeClosedIcon'; +export {EnvelopeOpenIcon} from './Objects/EnvelopeOpenIcon'; +export {EraserIcon} from './Objects/EraserIcon'; +export {ExclamationTriangleIcon} from './Abstract/ExclamationTriangleIcon'; +export {ExitIcon} from './Abstract/ExitIcon'; +export {ExitFullScreenIcon} from './Abstract/ExitFullScreenIcon'; +export {ExternalLinkIcon} from './Abstract/ExternalLinkIcon'; +export {EyeClosedIcon} from './Objects/EyeClosedIcon'; +export {EyeNoneIcon} from './Objects/EyeNoneIcon'; +export {EyeOpenIcon} from './Objects/EyeOpenIcon'; +export {FaceIcon} from './Objects/FaceIcon'; +export {FigmaLogoIcon} from './Logos/FigmaLogoIcon'; +export {FileIcon} from './Objects/FileIcon'; +export {FileMinusIcon} from './Objects/FileMinusIcon'; +export {FilePlusIcon} from './Objects/FilePlusIcon'; +export {FileTextIcon} from './Objects/FileTextIcon'; +export {FontBoldIcon} from './Typography/FontBoldIcon'; +export {FontFamilyIcon} from './Typography/FontFamilyIcon'; +export {FontItalicIcon} from './Typography/FontItalicIcon'; +export {FontRomanIcon} from './Typography/FontRomanIcon'; +export {FontSizeIcon} from './Typography/FontSizeIcon'; +export {FontStyleIcon} from './Typography/FontStyleIcon'; +export {FrameIcon} from './Design/FrameIcon'; +export {FramerLogoIcon} from './Logos/FramerLogoIcon'; +export {GearIcon} from './Objects/GearIcon'; +export {GitHubLogoIcon} from './Logos/GitHubLogoIcon'; +export {GlobeIcon} from './Objects/GlobeIcon'; +export {GridIcon} from './Components/GridIcon'; +export {GroupIcon} from './Design/GroupIcon'; +export {Half1Icon} from './Abstract/Half1Icon'; +export {Half2Icon} from './Abstract/Half2Icon'; +export {HamburgerMenuIcon} from './Abstract/HamburgerMenuIcon'; +export {HandIcon} from './Objects/HandIcon'; +export {HeadingIcon} from './Typography/HeadingIcon'; +export {HeartIcon} from './Objects/HeartIcon'; +export {HeartFilledIcon} from './Objects/HeartFilledIcon'; +export {HeightIcon} from './Arrows/HeightIcon'; +export {HobbyKnifeIcon} from './Objects/HobbyKnifeIcon'; +export {HomeIcon} from './Objects/HomeIcon'; +export {IconJarLogoIcon} from './Logos/IconJarLogoIcon'; +export {IconfontLogoIcon} from './Logos/IconfontLogoIcon'; +export {IdCardIcon} from './Objects/IdCardIcon'; +export {ImageIcon} from './Components/ImageIcon'; +export {InfoCircledIcon} from './Abstract/InfoCircledIcon'; +export {InputIcon} from './Components/InputIcon'; +export {InstagramLogoIcon} from './Logos/InstagramLogoIcon'; +export {KeyboardIcon} from './Objects/KeyboardIcon'; +export {LapTimerIcon} from './Objects/LapTimerIcon'; +export {LaptopIcon} from './Objects/LaptopIcon'; +export {LayersIcon} from './Design/LayersIcon'; +export {LayoutIcon} from './Components/LayoutIcon'; +export {LeftWingIcon} from './Objects/LeftWingIcon'; +export {LetterCaseCapitalizeIcon} from './Typography/LetterCaseCapitalizeIcon'; +export {LetterCaseLowercaseIcon} from './Typography/LetterCaseLowercaseIcon'; +export {LetterCaseToggleIcon} from './Typography/LetterCaseToggleIcon'; +export {LetterCaseUppercaseIcon} from './Typography/LetterCaseUppercaseIcon'; +export {LetterSpacingIcon} from './Typography/LetterSpacingIcon'; +export {LightningBoltIcon} from './Objects/LightningBoltIcon'; +export {LineHeightIcon} from './Typography/LineHeightIcon'; +export {LineWidthIcon} from './Lines/LineWidthIcon'; +export {Link1Icon} from './Objects/Link1Icon'; +export {Link2Icon} from './Objects/Link2Icon'; +export {LinkBreak1Icon} from './Objects/LinkBreak1Icon'; +export {LinkBreak2Icon} from './Objects/LinkBreak2Icon'; +export {LinkNone1Icon} from './Objects/LinkNone1Icon'; +export {LinkNone2Icon} from './Objects/LinkNone2Icon'; +export {LinkedInLogoIcon} from './Logos/LinkedInLogoIcon'; +export {ListBulletIcon} from './Components/ListBulletIcon'; +export {LockClosedIcon} from './Objects/LockClosedIcon'; +export {LockOpen1Icon} from './Objects/LockOpen1Icon'; +export {LockOpen2Icon} from './Objects/LockOpen2Icon'; +export {LoopIcon} from './Player/LoopIcon'; +export {LoopOneIcon} from './Player/LoopOneIcon'; +export {MagicWandIcon} from './Objects/MagicWandIcon'; +export {MagnifierIcon} from './Objects/MagnifierIcon'; +export {MagnifyingGlassIcon} from './Objects/MagnifyingGlassIcon'; +export {MarginIcon} from './Design/MarginIcon'; +export {MaskOffIcon} from './Design/MaskOffIcon'; +export {MaskOnIcon} from './Design/MaskOnIcon'; +export {MinusIcon} from './Abstract/MinusIcon'; +export {MinusCircledIcon} from './Abstract/MinusCircledIcon'; +export {MixIcon} from './Objects/MixIcon'; +export {MixerHorizontalIcon} from './Objects/MixerHorizontalIcon'; +export {MixerVerticalIcon} from './Objects/MixerVerticalIcon'; +export {MobileIcon} from './Objects/MobileIcon'; +export {ModulzLogoIcon} from './Logos/ModulzLogoIcon'; +export {MoonIcon} from './Objects/MoonIcon'; +export {MoveIcon} from './Arrows/MoveIcon'; +export {NotionLogoIcon} from './Logos/NotionLogoIcon'; +export {OpacityIcon} from './Design/OpacityIcon'; +export {OpenInNewWindowIcon} from './Abstract/OpenInNewWindowIcon'; +export {OverlineIcon} from './Typography/OverlineIcon'; +export {PaddingIcon} from './Design/PaddingIcon'; +export {PaperPlaneIcon} from './Objects/PaperPlaneIcon'; +export {PauseIcon} from './Player/PauseIcon'; +export {Pencil1Icon} from './Objects/Pencil1Icon'; +export {Pencil2Icon} from './Objects/Pencil2Icon'; +export {PersonIcon} from './Objects/PersonIcon'; +export {PieChartIcon} from './Components/PieChartIcon'; +export {PilcrowIcon} from './Typography/PilcrowIcon'; +export {PinBottomIcon} from './Alignment/PinBottomIcon'; +export {PinLeftIcon} from './Alignment/PinLeftIcon'; +export {PinRightIcon} from './Alignment/PinRightIcon'; +export {PinTopIcon} from './Alignment/PinTopIcon'; +export {PlayIcon} from './Player/PlayIcon'; +export {PlayFilledIcon} from './Player/PlayFilledIcon'; +export {PlusIcon} from './Abstract/PlusIcon'; +export {PlusCircledIcon} from './Abstract/PlusCircledIcon'; +export {QuestionMarkIcon} from './Abstract/QuestionMarkIcon'; +export {QuestionMarkCircledIcon} from './Abstract/QuestionMarkCircledIcon'; +export {QuoteIcon} from './Components/QuoteIcon'; +export {RadiobuttonIcon} from './Components/RadiobuttonIcon'; +export {ReactLogoIcon} from './Logos/ReactLogoIcon'; +export {ReaderIcon} from './Objects/ReaderIcon'; +export {RecordIcon} from './Player/RecordIcon'; +export {ReloadIcon} from './Abstract/ReloadIcon'; +export {ResetIcon} from './Abstract/ResetIcon'; +export {ResumeIcon} from './Player/ResumeIcon'; +export {ResumeFilledIcon} from './Player/ResumeFilledIcon'; +export {RightWingIcon} from './Objects/RightWingIcon'; +export {RocketIcon} from './Objects/RocketIcon'; +export {RotateCounterClockwiseIcon} from './Design/RotateCounterClockwiseIcon'; +export {RowSpacingIcon} from './Design/RowSpacingIcon'; +export {RowsIcon} from './Design/RowsIcon'; +export {RulerHorizontalIcon} from './Objects/RulerHorizontalIcon'; +export {RulerSquareIcon} from './Objects/RulerSquareIcon'; +export {ScissorsIcon} from './Objects/ScissorsIcon'; +export {SectionIcon} from './Components/SectionIcon'; +export {SewingPinIcon} from './Objects/SewingPinIcon'; +export {SewingPinFilledIcon} from './Objects/SewingPinFilledIcon'; +export {ShadowIcon} from './Design/ShadowIcon'; +export {ShadowInnerIcon} from './Design/ShadowInnerIcon'; +export {ShadowNoneIcon} from './Design/ShadowNoneIcon'; +export {ShadowOuterIcon} from './Design/ShadowOuterIcon'; +export {Share1Icon} from './Abstract/Share1Icon'; +export {Share2Icon} from './Abstract/Share2Icon'; +export {ShuffleIcon} from './Player/ShuffleIcon'; +export {SizeIcon} from './Arrows/SizeIcon'; +export {SketchColorLogoIcon} from './Logos/SketchColorLogoIcon'; +export {SketchLogoIcon} from './Logos/SketchLogoIcon'; +export {SlashIcon} from './Abstract/SlashIcon'; +export {SliderIcon} from './Components/SliderIcon'; +export {SolidIcon} from './Lines/SolidIcon'; +export {SpaceBetweenHorizontallyIcon} from './Alignment/SpaceBetweenHorizontallyIcon'; +export {SpaceBetweenVerticallyIcon} from './Alignment/SpaceBetweenVerticallyIcon'; +export {SpaceEvenlyHorizontallyIcon} from './Alignment/SpaceEvenlyHorizontallyIcon'; +export {SpaceEvenlyVerticallyIcon} from './Alignment/SpaceEvenlyVerticallyIcon'; +export {SpeakerLoudIcon} from './Player/SpeakerLoudIcon'; +export {SpeakerLoudFilledIcon} from './Player/SpeakerLoudFilledIcon'; +export {SpeakerModerateIcon} from './Player/SpeakerModerateIcon'; +export {SpeakerModerateFilledIcon} from './Player/SpeakerModerateFilledIcon'; +export {SpeakerOffIcon} from './Player/SpeakerOffIcon'; +export {SpeakerOffFilledIcon} from './Player/SpeakerOffFilledIcon'; +export {SpeakerQuietIcon} from './Player/SpeakerQuietIcon'; +export {SpeakerQuietFilledIcon} from './Player/SpeakerQuietFilledIcon'; +export {SquareIcon} from './Abstract/SquareIcon'; +export {StackIcon} from './Design/StackIcon'; +export {StarIcon} from './Objects/StarIcon'; +export {StarFilledIcon} from './Objects/StarFilledIcon'; +export {StitchesLogoIcon} from './Logos/StitchesLogoIcon'; +export {StopIcon} from './Player/StopIcon'; +export {StopFilledIcon} from './Player/StopFilledIcon'; +export {StopwatchIcon} from './Objects/StopwatchIcon'; +export {StretchHorizontallyIcon} from './Alignment/StretchHorizontallyIcon'; +export {StretchVerticallyIcon} from './Alignment/StretchVerticallyIcon'; +export {StrikethroughIcon} from './Typography/StrikethroughIcon'; +export {SunIcon} from './Objects/SunIcon'; +export {SwitchIcon} from './Components/SwitchIcon'; +export {SymbolIcon} from './Design/SymbolIcon'; +export {TableIcon} from './Components/TableIcon'; +export {TargetIcon} from './Objects/TargetIcon'; +export {TextIcon} from './Typography/TextIcon'; +export {TextAlignBottomIcon} from './Typography/TextAlignBottomIcon'; +export {TextAlignCenterIcon} from './Typography/TextAlignCenterIcon'; +export {TextAlignJustifyIcon} from './Typography/TextAlignJustifyIcon'; +export {TextAlignLeftIcon} from './Typography/TextAlignLeftIcon'; +export {TextAlignMiddleIcon} from './Typography/TextAlignMiddleIcon'; +export {TextAlignRightIcon} from './Typography/TextAlignRightIcon'; +export {TextAlignTopIcon} from './Typography/TextAlignTopIcon'; +export {TextNoneIcon} from './Typography/TextNoneIcon'; +export {ThickArrowDownIcon} from './Arrows/ThickArrowDownIcon'; +export {ThickArrowLeftIcon} from './Arrows/ThickArrowLeftIcon'; +export {ThickArrowRightIcon} from './Arrows/ThickArrowRightIcon'; +export {ThickArrowUpIcon} from './Arrows/ThickArrowUpIcon'; +export {TimerIcon} from './Objects/TimerIcon'; +export {TokensIcon} from './Design/TokensIcon'; +export {TrackNextIcon} from './Player/TrackNextIcon'; +export {TrackNextFilledIcon} from './Player/TrackNextFilledIcon'; +export {TrackPreviousIcon} from './Player/TrackPreviousIcon'; +export {TrackPreviousFilledIcon} from './Player/TrackPreviousFilledIcon'; +export {TransformIcon} from './Design/TransformIcon'; +export {TransparencyGridIcon} from './Design/TransparencyGridIcon'; +export {TrashIcon} from './Objects/TrashIcon'; +export {TriangleDownIcon} from './Arrows/TriangleDownIcon'; +export {TriangleLeftIcon} from './Arrows/TriangleLeftIcon'; +export {TriangleRightIcon} from './Arrows/TriangleRightIcon'; +export {TriangleUpIcon} from './Arrows/TriangleUpIcon'; +export {TwitterLogoIcon} from './Logos/TwitterLogoIcon'; +export {UnderlineIcon} from './Typography/UnderlineIcon'; +export {UpdateIcon} from './Abstract/UpdateIcon'; +export {UploadIcon} from './Abstract/UploadIcon'; +export {ValueIcon} from './Design/ValueIcon'; +export {ValueNoneIcon} from './Design/ValueNoneIcon'; +export {VercelLogoIcon} from './Logos/VercelLogoIcon'; +export {VideoIcon} from './Components/VideoIcon'; +export {ViewGridIcon} from './Abstract/ViewGridIcon'; +export {ViewHorizontalIcon} from './Abstract/ViewHorizontalIcon'; +export {ViewNoneIcon} from './Abstract/ViewNoneIcon'; +export {ViewVerticalIcon} from './Abstract/ViewVerticalIcon'; +export {WidthIcon} from './Arrows/WidthIcon'; +export {ZoomInIcon} from './Design/ZoomInIcon'; +export {ZoomOutIcon} from './Design/ZoomOutIcon'; \ No newline at end of file diff --git a/src/Icons/types.ts b/src/Icons/types.ts index cfa33b85..2a328610 100644 --- a/src/Icons/types.ts +++ b/src/Icons/types.ts @@ -3,4 +3,5 @@ import * as React from 'react'; export interface IconProps extends React.SVGAttributes { children?: never; color?: string; + iconType?: string; } \ No newline at end of file