UNPKG

pioner-ant

Version:

Wrapper for Ant design framework providing customized styling for components

11 lines (8 loc) 206 B
import { Button as _Button } from "antd"; import styled from "styled-components"; const Button = styled(_Button)` background-color: blue; color: white; border-radius: 6px; `; export default Button;