// import { faCircleArrowDown, faCircleCheck } from '@fortawesome/free-solid-svg-icons'; // import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import Link from 'next/link'; import styles from './PluginCard.module.scss'; type Props = { name: string, url: string, description: string, } export const PluginCard = (props: Props): JSX.Element => { const { name, url, description, } = props; // const [isEnabled, setIsEnabled] = useState(true); // const checkboxHandler = useCallback(() => { // setIsEnabled(false); // }, []); return (
{description}
{/* {owner.login === 'weseek' ?