mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-21 01:53:26 +00:00
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
|
|
module.exports = {
|
|
blocks: {
|
|
hint: ({ kwargs }) => {
|
|
return {
|
|
style: kwargs.style || 'info',
|
|
icon: kwargs.icon
|
|
};
|
|
}
|
|
}
|
|
};
|