Files
bishengWeb/src/components/bs-icons/office/index.tsx

11 lines
404 B
TypeScript
Raw Normal View History

2024-06-05 14:27:06 +08:00
import React, { forwardRef } from "react";
import { ReactComponent as Word } from "./Word.svg";
export const WordIcon = forwardRef<
SVGSVGElement & { className: any },
React.PropsWithChildren<{ className?: string }>
>(({ className, ...props }, ref) => {
2024-06-25 14:55:48 +08:00
const _className = 'transition text-[#43AFD2] ' + (className || '')
2024-06-05 14:27:06 +08:00
return <Word ref={ref} {...props} className={_className} />;
});