summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-sharing/src/shapes/site.js
blob: 2227429e5b774cd071733a68e040c2afa79ddfad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const {
    string,
    func,
    shape
} = require('gitbook-core').React.PropTypes;

const siteShape = shape({
    label: string.isRequired,
    icon: string.isRequired,
    onShare: func.isRequired
});

module.exports = siteShape;