From 7926c4c9190b06a36bb688cfcb7479a0ff81bc84 Mon Sep 17 00:00:00 2001 From: Danny Hurlburt Date: Sun, 30 Jun 2024 12:48:55 -0600 Subject: [PATCH] Fix typo --- docs/react-types/ComponentProps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/react-types/ComponentProps.md b/docs/react-types/ComponentProps.md index 50ed42a8..613840a9 100644 --- a/docs/react-types/ComponentProps.md +++ b/docs/react-types/ComponentProps.md @@ -57,7 +57,7 @@ The type of a specific prop can also be inferred this way. Let's say you are usi type IconName = "warning" | "checkmark"; ``` -However, this type if not really reflecting the actual set of icons made available by the library. A better solution is to infer the type: +However, this type is not really reflecting the actual set of icons made available by the library. A better solution is to infer the type: ```tsx import { Icon } from "component-library";