/** * Created by David Garcia for Finboot. * * Custom SeletableTag component for Docusaurus. */ import clsx from 'clsx'; import React from 'react'; import { SelectableTagProps } from '../types'; import styles from './styles.module.css'; export default function SelectableTag(props:SelectableTagProps) { const { name, label, checked, onChange, } = props; return ( ); }