plane/web/components/icons/css-file-icon.tsx

11 lines
335 B
TypeScript
Raw Normal View History

import React from "react";
import Image from "next/image";
// image
import CssFileIcon from "public/attachment/css-icon.png";
// type
import type { ImageIconPros } from "./types";
export const CssIcon: React.FC<ImageIconPros> = ({ width, height }) => (
<Image src={CssFileIcon} height={height} width={width} alt="CssFileIcon" />
);