Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 3x 3x 3x 1x 2x | import { Element } from 'hast';
import {cssCornersFork} from './github-corners-fork.css.js'
export const githubCornersForkStyle = cssCornersFork
interface GithubCorners {
href?: string;
}
export function githubCornersFork(opts: GithubCorners): Element {
const { href } = opts;
if (!href) {
return;
}
return {
type: 'element',
tagName: 'a',
properties: {
'aria-label': 'Fork me on Github',
title: 'Fork me on GitHub',
target: '__blank',
className: 'github-fork-ribbon',
'data-ribbon': 'Fork me on GitHub',
href,
},
children: []
}
} |