0
0
mirror of https://github.com/makeplane/plane synced 2024-06-14 14:31:34 +00:00
plane/apps/app/components/ui/icon.tsx
Aaryan Khandelwal c87d70195d
refactor: command k and enable workspace level search ()
* refactor: command k and enable workspace level search

* fix: global level search
2023-07-25 13:52:21 +05:30

13 lines
280 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 leading-5 font-light ${className}`}>
{iconName}
</span>
);