Skip to content

Commit

Permalink
update proptypes and run docs:api
Browse files Browse the repository at this point in the history
  • Loading branch information
siriwatknp committed Jul 29, 2022
1 parent b1758c3 commit f7deddb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/pages/material-ui/api/skeleton.json
Expand Up @@ -20,7 +20,7 @@
"variant": {
"type": {
"name": "union",
"description": "'circular'<br>&#124;&nbsp;'rectangular'<br>&#124;&nbsp;'text'<br>&#124;&nbsp;string"
"description": "'circular'<br>&#124;&nbsp;'rectangular'<br>&#124;&nbsp;'rounded'<br>&#124;&nbsp;'text'<br>&#124;&nbsp;string"
},
"default": "'text'"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-material/src/Skeleton/Skeleton.js
Expand Up @@ -237,7 +237,7 @@ Skeleton.propTypes /* remove-proptypes */ = {
* @default 'text'
*/
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([
PropTypes.oneOf(['circular', 'rectangular', 'text']),
PropTypes.oneOf(['circular', 'rectangular', 'rounded', 'text']),
PropTypes.string,
]),
/**
Expand Down

0 comments on commit f7deddb

Please sign in to comment.