summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-hints/index.js
blob: 55efd252106d5de4066d193ef93d92871837f2a5 (plain)
1
2
3
4
5
6
7
8
9
10
11

module.exports = {
    blocks: {
        hint: ({ kwargs }) => {
            return {
                style: kwargs.style || 'info',
                icon:  kwargs.icon
            };
        }
    }
};