fui-fancyui
Version:
FancyUI Libary
16 lines (15 loc) • 445 B
JavaScript
import { css as t } from "styled-components";
function p(n) {
const { $isLabelProvided: e } = n;
return e ? t`
margin-top: 16px;
padding: 0 0 8px 0px; //if the input is not active and the type is transparent
` : t`
// old spacings remove when its not needed anymore
margin-top: 2px;
padding: 0 0 2px 0px; //if the input is not active and the type is transparent
`;
}
export {
p as calcInputPadding
};