import { Octicon } from '.' type BtnProps = { icon?: keyof typeof Octicon, label?: string, active?: boolean, tooltip?: string, tooltipLoc?: 'se' | 'sw' | 'nw', class?: string, onClick?: (event: MouseEvent) => unknown, } export function Btn({ icon, label, active, class: clazz, tooltip, tooltipLoc, onClick }: BtnProps) { return