kitchen-color-studio
Version:
an open-source color editor for designing color system
16 lines • 564 B
JavaScript
import { memo } from 'react';
import styled from 'styled-components';
import { jsx as _jsx } from "react/jsx-runtime";
var FooterView = styled.div.withConfig({
displayName: "FooterView",
componentId: "kitchen-color-studio__sc-1lhbs53-0"
})(["padding:24px;color:", ";text-align:center;"], function (_ref) {
var theme = _ref.theme;
return theme.colorTextSecondary;
});
var Footer = /*#__PURE__*/memo(function () {
return /*#__PURE__*/_jsx(FooterView, {
children: "Made with \u2764 by Ant Group and Ant Design Community"
});
});
export default Footer;