diff --git a/src/components/Text/index.tsx b/src/components/Text/index.tsx index e1fdac1..6e088a9 100644 --- a/src/components/Text/index.tsx +++ b/src/components/Text/index.tsx @@ -1,7 +1,11 @@ import * as S from './styles'; const Text = (props: TextProps) => { - return {props.label}; + return ( + + {props.label} + + ); }; export default Text;