// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; import { WarningIcon } from "~/components/icon/icon"; import { Tooltip } from "@material-ui/core"; interface WarningComponentProps { text: string; rules: RegExp[]; message: string; } export const WarningComponent = ({ text, rules, message }: WarningComponentProps) => rules.find(aRule => text.match(aRule) !== null) ? message ? : : null; interface IllegalNamingWarningProps { name: string; } export const IllegalNamingWarning = ({ name }: IllegalNamingWarningProps) => ;