Skip to content

Commit

Permalink
Accept 3x2 ratio prop type in AspectRatio
Browse files Browse the repository at this point in the history
  • Loading branch information
francinelucca committed Apr 22, 2022
1 parent d7e7865 commit f554ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/AspectRatio/AspectRatio.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ AspectRatio.propTypes = {
* Specify the ratio to be used by the aspect ratio container. This will
* determine what aspect ratio your content will be displayed in.
*/
ratio: PropTypes.oneOf(['16x9', '9x16', '2x1', '1x2', '4x3', '3x4', '1x1']),
ratio: PropTypes.oneOf(['16x9', '9x16', '2x1', '1x2', '4x3', '3x4', '3x2', '1x1']),
};

export default AspectRatio;

0 comments on commit f554ffb

Please sign in to comment.