1
This commit is contained in:
10
src/components/bs-icons/office/index.tsx
Normal file
10
src/components/bs-icons/office/index.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
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) => {
|
||||
const _className = 'transition text-gray-950 ' + (className || '')
|
||||
return <Word ref={ref} {...props} className={_className} />;
|
||||
});
|
||||
Reference in New Issue
Block a user