// @ts-nocheck import React from 'react'; import styled from 'styled-components'; export function TextStatus({ intent, children }) { return {children}; } const TextStatusRoot = styled.span` ${(props) => props.intent === 'warning' && ` color: #ec5b0a;`} ${(props) => props.intent === 'success' && ` color: #2ba01d;`} ${(props) => props.intent === 'none' && ` color: #777;`} ${(props) => props.intent === 'primary' && ` color: #1652c8;`} `;