fui-fancyui
Version:
FancyUI Libary
25 lines (22 loc) • 573 B
JavaScript
import { styled as e } from "styled-components";
import { getTextColor as r } from "../../../design/designFunctions/colorCalculatorForComponent/colorCalculatorForComponent.js";
const l = e.li`
display: flex;
flex: 1 0 auto;
min-width: 40px;
input {
flex-grow: 1;
height: auto;
width: 100%;
border: none;
font-size: 14px;
background-color: transparent;
color: ${({ $themeType: o, theme: t }) => r({ $themeType: o ?? "primary", theme: t, turnColorTheme: !0 })};
&:focus {
outline: none;
}
}
`;
export {
l as InputLi
};