fui-fancyui
Version:
FancyUI Libary
20 lines (19 loc) • 685 B
JavaScript
"use client";
import { getBackgroundColor as n } from "../../../design/designFunctions/colorCalculatorForComponent/colorCalculatorForComponent.js";
import { styled as r } from "styled-components";
const l = r.textarea`
border: none;
box-sizing: border-box;
appearance: none;
outline: none;
width: 100%;
font-family: inherit;
min-height: ${({ theme: e, $startHeight: o }) => o ?? e.globalElementSizes.xs};
font-size: ${({ theme: e }) => e.fontSizes.interactiveMd.fontSize};
background-color: transparent;
resize: vertical;
color: ${({ theme: e, $themeType: o = "secondary", $layer: t }) => n({ theme: e, $themeType: o, $layer: t })};
`;
export {
l as default
};