芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/.cache/admin/src/components/Roles/Tabs/Tab.js
import styled from 'styled-components'; /* eslint-disable indent */ const Tab = styled.div` flex: 1; padding: 1rem; text-align: center; ${({ isActive, theme }) => isActive ? { borderTop: `2px solid ${theme.main.colors.blue}`, backgroundColor: theme.main.colors.white, } : { borderTop: '2px solid transparent', backgroundColor: '#f2f3f4', cursor: 'pointer', }} `; export default Tab;