mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
* refactor: edition specific migration * revert: pagination from space endpoints * fix: project publish --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
import React from "react";
|
|
|
|
type Props = {
|
|
iconName: string;
|
|
className?: string;
|
|
};
|
|
|
|
export const Icon: React.FC<Props> = ({ iconName, className = "" }) => (
|
|
<span className={`material-symbols-rounded text-sm font-light leading-5 ${className}`}>{iconName}</span>
|
|
);
|