mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2026-01-31 14:51:18 +03:00
refactor: update icons in GitHubMirrorSettings and OrganizationConfiguration components for improved clarity
This commit is contained in:
@@ -19,7 +19,6 @@ import {
|
|||||||
Info,
|
Info,
|
||||||
GitBranch,
|
GitBranch,
|
||||||
Star,
|
Star,
|
||||||
Building2,
|
|
||||||
Lock,
|
Lock,
|
||||||
Archive,
|
Archive,
|
||||||
GitPullRequest,
|
GitPullRequest,
|
||||||
@@ -29,7 +28,8 @@ import {
|
|||||||
Target,
|
Target,
|
||||||
BookOpen,
|
BookOpen,
|
||||||
GitFork,
|
GitFork,
|
||||||
ChevronDown
|
ChevronDown,
|
||||||
|
Funnel
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import type { GitHubConfig, MirrorOptions, AdvancedOptions } from "@/types/config";
|
import type { GitHubConfig, MirrorOptions, AdvancedOptions } from "@/types/config";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
@@ -388,7 +388,7 @@ export function GitHubMirrorSettings({
|
|||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="text-sm font-medium mb-3 flex items-center gap-2">
|
<h4 className="text-sm font-medium mb-3 flex items-center gap-2">
|
||||||
<Building2 className="h-4 w-4" />
|
<Funnel className="h-4 w-4" />
|
||||||
Filtering & Behavior
|
Filtering & Behavior
|
||||||
</h4>
|
</h4>
|
||||||
<p className="text-xs text-muted-foreground mb-4">
|
<p className="text-xs text-muted-foreground mb-4">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
import { Label } from "@/components/ui/label";
|
import { Label } from "@/components/ui/label";
|
||||||
import { Building2, Star, Globe, Lock, Shield, Info } from "lucide-react";
|
import { Building2, Star, Globe, Lock, Shield, Info, MonitorCog } from "lucide-react";
|
||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
@@ -40,7 +40,7 @@ export const OrganizationConfiguration: React.FC<OrganizationConfigurationProps>
|
|||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="text-sm font-medium mb-3 flex items-center gap-2">
|
<h4 className="text-sm font-medium mb-3 flex items-center gap-2">
|
||||||
<Building2 className="h-4 w-4" />
|
<MonitorCog className="h-4 w-4" />
|
||||||
Organization Configuration
|
Organization Configuration
|
||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { Card } from "@/components/ui/card";
|
import { Card } from "@/components/ui/card";
|
||||||
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
|
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
|
||||||
import { Info, GitBranch, FolderTree, Star, Building2, User } from "lucide-react";
|
import { Info, GitBranch, FolderTree, Star, Building2, User, Building } from "lucide-react";
|
||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
@@ -230,8 +230,11 @@ export const OrganizationStrategy: React.FC<OrganizationStrategyProps> = ({
|
|||||||
return (
|
return (
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<div>
|
<div>
|
||||||
<h3 className="text-base font-semibold mb-1">Organization Strategy</h3>
|
<h4 className="text-sm font-medium mb-3 flex items-center gap-2">
|
||||||
<p className="text-sm text-muted-foreground">
|
<Building className="h-4 w-4" />
|
||||||
|
Organization Strategy
|
||||||
|
</h4>
|
||||||
|
<p className="text-xs text-muted-foreground mb-4">
|
||||||
Choose how your repositories will be organized in Gitea
|
Choose how your repositories will be organized in Gitea
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user