Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 85682ff

Browse files
committed
Fix doc block alignment
1 parent 1120136 commit 85682ff

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

components/atoms/Button/Button.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import styles from './Button.module.css'
1313
* @param {boolean} props.iconOnly Whether this button is an icon only.
1414
* @param {string} props.iconPosition Position to render the icon.
1515
* @param {string} props.text Button text or aria-label.
16-
* @return {Element} The inside of the Button component.
16+
* @return {Element} The inside of the Button component.
1717
*/
1818
function ButtonInner({icon, iconOnly, iconPosition, text}) {
1919
return (
@@ -52,7 +52,7 @@ ButtonInner.propTypes = {
5252
* @param {string} props.type Button type.
5353
* @param {string} props.url Button link url.
5454
* @param {boolean} props.urlExternal Whether the url on this button links to an external site.
55-
* @return {Element} The button component.
55+
* @return {Element} The button component.
5656
*/
5757
export default function Button({
5858
attributes,

components/molecules/Alert/Alert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import styles from './Alert.module.css'
1212
* @param {string} props.className Optional classNames.
1313
* @param {string} props.icon Icon to use.
1414
* @param {string} props.type The type of alert.
15-
* @return {Element} The Alert component.
15+
* @return {Element} The Alert component.
1616
*/
1717
export default function Alert({body, className, icon, type}) {
1818
return (

components/molecules/Hero/Hero.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import styles from './Hero.module.css'
1313
* @param {object} props.cta Object with text and url props for the CTA button.
1414
* @param {string} props.subtitle Text for the subtitle.
1515
* @param {string} props.title Text for the title.
16-
* @return {Element} The Hero component.
16+
* @return {Element} The Hero component.
1717
*/
1818
export default function Hero({backgroundImage, body, cta, subtitle, title}) {
1919
return (

0 commit comments

Comments
 (0)