UNPKG

@primer/components

Version:
8 lines 852 B
import styled from 'styled-components'; import { COMMON, get, LAYOUT, TYPOGRAPHY } from '../constants'; import sx from '../sx'; const ButtonTableList = styled.summary.withConfig({ displayName: "ButtonTableList", componentId: "sc-1m4q8ia-0" })(["display:inline-block;padding:0;font-size:", ";color:", ";text-decoration:none;white-space:nowrap;cursor:pointer;user-select:none;background-color:transparent;border:0;appearance:none;&:hover{text-decoration:underline;}&:disabled{&,&:hover{color:rgba(", ",0.5);cursor:default;}}&:after{display:inline-block;margin-left:", ";width:0;height:0;vertical-align:-2px;content:'';border:4px solid transparent;border-top-color:currentcolor;}", " ", " ", " ", ";"], get('fontSizes.1'), get('colors.fg.muted'), get('colors.fg.muted'), get('space.1'), COMMON, TYPOGRAPHY, LAYOUT, sx); export default ButtonTableList;