Skip to content

Commit

Permalink
Updated License page with new design (#3405)
Browse files Browse the repository at this point in the history
  • Loading branch information
bexsoft committed Jul 12, 2024
1 parent e3e3599 commit 8f0eb11
Show file tree
Hide file tree
Showing 4 changed files with 340 additions and 1,105 deletions.
32 changes: 32 additions & 0 deletions web-app/src/screens/Console/License/CheckIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// This file is part of MinIO Console Server
// Copyright (c) 2024 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

import * as React from "react";
import { SVGProps } from "react";

const CheckIcon = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
className={`min-icon`}
fill={"currentcolor"}
{...props}
>
<polygon points="8.5 16.5 21.5 3.6 23.4 5.5 8.5 20.4 .6 12.5 2.5 10.5 8.5 16.5" />
</svg>
);

export default CheckIcon;
41 changes: 0 additions & 41 deletions web-app/src/screens/Console/License/FAQModal.tsx

This file was deleted.

Loading

0 comments on commit 8f0eb11

Please sign in to comment.