pioner-ant
Version:
Wrapper for Ant design framework providing customized styling for components
16 lines (14 loc) • 538 B
JavaScript
// Components with default look.
// TODO: Export all original components that we want to expose
import _Input from "antd/lib/input";
export { _Input as Input };
import _Icon from "antd/lib/icon";
export { _Icon as Icon };
// Overrided components:
// TODO: Place all components that we want to override the look and feel for here
import _Button from "./components/button";
export { _Button as Button };
import _Badge from "./components/badge";
export { _Badge as Badge };
import _Link from "./components/badge";
export { _Link as Link };