From c89e9e5422ad3587fa24e28a00d9941cde916ca0 Mon Sep 17 00:00:00 2001 From: ej9x Date: Wed, 8 Aug 2018 16:05:22 +0300 Subject: [PATCH] fix(atoms): fix Paragraph size required --- src/atoms/typography/Paragraph/Paragraph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atoms/typography/Paragraph/Paragraph.js b/src/atoms/typography/Paragraph/Paragraph.js index 4037c3e4..4e610fd6 100644 --- a/src/atoms/typography/Paragraph/Paragraph.js +++ b/src/atoms/typography/Paragraph/Paragraph.js @@ -5,7 +5,7 @@ import { createStyledTag, createTheme } from '../../../utils'; type ParagraphProps = {| children?: React$Node, kind?: 'primary' | 'secondary' | 'disabled' | 'white', - size: 'md' | 'lg', + size?: 'md' | 'lg', text?: string, |};