/* * Copyright (c) 2020 Refactoring UI Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import { FC } from "react"; import { Icon, IconProps } from "./Icon.js"; export const BarChartIcon: FC = (props) => ( ); export const PauseIcon: FC = (props) => ( ); export const PlayIcon: FC = (props) => ( ); export const CodeBracketIcon: FC = (props) => ( ); export const CodeBracketSquareIcon: FC = (props) => ( ); export const ScaleIcon: FC = (props) => ( ); export const CheckIcon: FC = (props) => ( ); export const FireIcon: FC = (props) => ( ); export const BoltIcon: FC = (props) => ( ); export const Bars3CenterLeftIcon: FC = (props) => ( ); export const BookOpenIcon: FC = (props) => ( ); export const UserIcon: FC = (props) => ( ); export const UserCircleIcon: FC = (props) => ( ); export const AdjustmentsHorizontalIcon: FC = (props) => ( ); export const AdjustmentsVerticalIcon: FC = (props) => ( ); export const DocumentTextIcon: FC = (props) => ( ); //An icon shaped like a link export const LinkIcon: FC = (props) => ( ); export const ChevronRightIcon: FC = (props) => ( ); export const ChevronLeftIcon: FC = (props) => ( ); export const ChevronDownIcon: FC = (props) => ( ); export const ChevronUpIcon: FC = (props) => ( ); export const Bars4Icon: FC = (props) => ( ); export const ListBulletIcon: FC = (props) => ( ); export const TableCellsIcon: FC = (props) => ( ); export const ScatterPlotIcon: FC = (props) => ( ); export const Cog8ToothIcon: FC = (props) => ( ); export const RectangleStackIcon: FC = (props) => ( ); export const ArchiveBoxIcon: FC = (props) => ( ); export const ResetIcon: FC = (props) => ( ); export const BackwardIcon: FC = (props) => ( ); ); // chat-bubble-left export const CommentIcon: FC = (props) => ( ); export const ClipboardCopyIcon: FC = (props) => ( ); export const GlobeIcon: FC = (props) => ( ); export const LockIcon: FC = (props) => ( ); export const GroupIcon: FC = (props) => ( // circle-stack ); export const RightArrowIcon: FC = (props) => ( ); export const WrenchIcon: FC = (props) => ( ); export const HelpIcon: FC = (props) => ( // question-mark-circle ); export const PuzzleIcon: FC = (props) => ( ); export const ShareIcon: FC = (props) => ( ); export const HashIcon: FC = (props) => ( ); export const CalculatorIcon: FC = (props) => ( ); export const VariableIcon: FC = (props) => ( ); export const SquareBracketIcon: FC = (props) => ( ); export const CurlyBracketsIcon: FC = (props) => ( {" "} ); export const CommandLineIcon: FC = (props) => ( ); export const SearchIcon: FC = (props) => ( ); export const CubeTransparentIcon: FC = (props) => ( );