diff --git a/src/elements/Icon/Icon.d.ts b/src/elements/Icon/Icon.d.ts index 6014d77c79..1978bb5ba7 100644 --- a/src/elements/Icon/Icon.d.ts +++ b/src/elements/Icon/Icon.d.ts @@ -35,7 +35,7 @@ export interface StrictIconProps { /** Fitted, without space to left or right of Icon. */ fitted?: boolean - /** Icon can flipped. */ + /** Icon can be flipped. */ flipped?: 'horizontally' | 'vertically' /** Formatted to have its colors inverted for contrast. */ diff --git a/src/elements/Icon/Icon.js b/src/elements/Icon/Icon.js index 1aab096e59..50ca3a5652 100644 --- a/src/elements/Icon/Icon.js +++ b/src/elements/Icon/Icon.js @@ -48,7 +48,7 @@ class Icon extends PureComponent { /** Fitted, without space to left or right of Icon. */ fitted: PropTypes.bool, - /** Icon can flipped. */ + /** Icon can be flipped. */ flipped: PropTypes.oneOf(['horizontally', 'vertically']), /** Formatted to have its colors inverted for contrast. */