fui-fancyui
Version:
FancyUI Libary
25 lines (24 loc) • 613 B
JavaScript
"use client";
import { jsx as r } from "react/jsx-runtime";
import { styled as t } from "styled-components";
import e from "../../../design/designFunctions/simpleColorTransition/simpleTransition.js";
function a(o) {
return /* @__PURE__ */ r(i, { ...o, children: /* @__PURE__ */ r(n, {}) });
}
const n = t.div`
width: 50px;
height: 3px;
background-color: ${({ theme: o }) => o.color.secondary[0]};
border-radius: 3px;
`, i = t.button`
font-weight: bold;
border: none;
background-color: transparent;
cursor: pointer;
margin-top: 1rem;
margin-bottom: 1rem;
${e}
`;
export {
a as default
};