import React from 'react'; import QueryToolSvg from '../../img/fonticon/query_tool.svg?svgr'; import ViewDataSvg from '../../img/fonticon/view_data.svg?svgr'; import SaveDataSvg from '../../img/fonticon/save_data_changes.svg?svgr'; import PasteSvg from '../../img/content_paste.svg?svgr'; import FilterSvg from '../../img/filter_alt_black.svg?svgr'; import ClearSvg from '../../img/cleaning_services_black.svg?svgr'; import CommitSvg from '../../img/fonticon/commit.svg?svgr'; import RollbackSvg from '../../img/fonticon/rollback.svg?svgr'; import ConnectedSvg from '../../img/fonticon/connected.svg?svgr'; import DisconnectedSvg from '../../img/fonticon/disconnected.svg?svgr'; import RegexSvg from '../../img/fonticon/regex.svg?svgr'; import FormatCaseSvg from '../../img/fonticon/format_case.svg?svgr'; import PropTypes from 'prop-types'; import Expand from '../../img/fonticon/open_in_full.svg?svgr'; import Collapse from '../../img/fonticon/close_fullscreen.svg?svgr'; import AWS from '../../img/aws.svg?svgr'; export default function ExternalIcon({Icon, ...props}) { return ; } ExternalIcon.propTypes = { Icon: PropTypes.elementType.isRequired, }; export const QueryToolIcon = ({style})=>; QueryToolIcon.propTypes = {style: PropTypes.object}; export const ViewDataIcon = ({style})=>; ViewDataIcon.propTypes = {style: PropTypes.object}; export const SaveDataIcon = ({style})=>; SaveDataIcon.propTypes = {style: PropTypes.object}; export const PasteIcon = ({style})=>; PasteIcon.propTypes = {style: PropTypes.object}; export const FilterIcon = ({style})=>; FilterIcon.propTypes = {style: PropTypes.object}; export const CommitIcon = ({style})=>; CommitIcon.propTypes = {style: PropTypes.object}; export const RollbackIcon = ({style})=>; RollbackIcon.propTypes = {style: PropTypes.object}; export const ClearIcon = ({style})=>; ClearIcon.propTypes = {style: PropTypes.object}; export const ConnectedIcon = ({style})=>; ConnectedIcon.propTypes = {style: PropTypes.object}; export const DisonnectedIcon = ({style})=>; DisonnectedIcon.propTypes = {style: PropTypes.object}; export const RegexIcon = ({style})=>; RegexIcon.propTypes = {style: PropTypes.object}; export const FormatCaseIcon = ({style})=>; FormatCaseIcon.propTypes = {style: PropTypes.object}; export const ExpandDialogIcon = ({style})=>; ExpandDialogIcon.propTypes = {style: PropTypes.object}; export const MinimizeDialogIcon = ({style})=>; MinimizeDialogIcon.propTypes = {style: PropTypes.object}; export const AWSIcon = ({style})=>; AWSIcon.propTypes = {style: PropTypes.object};