From 9f0d43fe099a95ab1516ae951dcb60a89e76a5a5 Mon Sep 17 00:00:00 2001 From: 简律纯 Date: Fri, 3 Nov 2023 21:13:33 +0800 Subject: chore: delete useless codes --- docs/components/Icons.tsx | 165 ---------------------------------------------- 1 file changed, 165 deletions(-) delete mode 100644 docs/components/Icons.tsx (limited to 'docs/components/Icons.tsx') diff --git a/docs/components/Icons.tsx b/docs/components/Icons.tsx deleted file mode 100644 index c203b3d..0000000 --- a/docs/components/Icons.tsx +++ /dev/null @@ -1,165 +0,0 @@ -import React, { ComponentProps } from "react"; - -export type IconType = ((props: ComponentProps<"svg">) => JSX.Element) & { - requiresFill?: boolean; -}; - -export const TailwindIcon: IconType = (props) => { - return ( - - ); -}; - -export const GitHubIcon: IconType = ({ height = 28, ...props }) => { - return ( - - ); -}; - -export const DockerIcon: IconType = ({ height = 28, ...props }) => { - return ( - - - - - - ); -}; - -export const RectangleGroupIcon: IconType = (props) => { - return ( - - - - ); -}; - -export const FaceSmileIcon: IconType = (props) => { - return ( - - - - ); -}; - -export const RectangleStackIcon: IconType = (props) => { - return ( - - - - ); -}; - -export const JSIcon: IconType = (props) => { - return ( - - - - ); -}; - -JSIcon.requiresFill = true; - -export const TSIcon: IconType = (props) => { - return ( - - - - ); -}; - -TSIcon.requiresFill = true; - -export const CSSIcon: IconType = (props) => { - return ( - - - - ); -}; - -CSSIcon.requiresFill = true; -- cgit v1.2.3-70-g09d2