From a09c7ef0ec2d3edc9423aa5940fb346da52a796e Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sat, 15 Jun 2024 21:05:02 +0530 Subject: [PATCH] feat: text compont --- src/components/atoms/texts.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/components/atoms/texts.tsx diff --git a/src/components/atoms/texts.tsx b/src/components/atoms/texts.tsx new file mode 100644 index 00000000..e31b9ceb --- /dev/null +++ b/src/components/atoms/texts.tsx @@ -0,0 +1,15 @@ +import styled from "styled-components"; + +export const WarningText = styled.p` + border: 1px solid orange; + display: flex; + margin: 10px; + flex-direction: column; + font-size: small; + background: rgba(255,165,0,0.15); + padding: 5px; + font-family: "Roboto","Helvetica","Arial",sans-serif; + font-weight: 400; + line-height: 1.5; + letter-spacing: 0.00938em; +`