Add missing prop type for Mastodon

This commit is contained in:
Ariful Alam 2023-02-14 21:07:59 +06:00
parent 1229633a77
commit 2c9700d47e
2 changed files with 6 additions and 0 deletions

View File

@ -263,6 +263,7 @@ GitProfile.propTypes = {
social: PropTypes.shape({
linkedin: PropTypes.string,
twitter: PropTypes.string,
mastodon: PropTypes.string,
facebook: PropTypes.string,
instagram: PropTypes.string,
dribbble: PropTypes.string,

5
types/index.d.ts vendored
View File

@ -49,6 +49,11 @@ export interface Social {
*/
twitter?: string;
/**
* Mastodon
*/
mastodon?: string;
/**
* Facebook
*/