mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-18 08:35:10 +00:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
|
|
module.exports = {
|
|
blocks: {
|
|
hint: ({ kwargs, children }) => {
|
|
return {
|
|
children,
|
|
style: kwargs.style || 'info',
|
|
icon: kwargs.icon
|
|
};
|
|
}
|
|
}
|
|
};
|