UNPKG

pioner-ant

Version:

Wrapper for Ant design framework providing customized styling for components

13 lines (10 loc) 252 B
import { Badge as _Badge } from "antd"; import styled from "styled-components"; const Badge = styled(_Badge)` .ant-badge-count { background-color: orange; color: yellow; box-shadow: 0 0 0 1px #d2d2d2 inset; } `; export default Badge;