mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-07-01 04:14:20 +08:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
|
|
import styled from '@emotion/styled'
|
|
import tw from 'twin.macro'
|
|
|
|
const Card = styled.div`
|
|
${tw`border border-[#eaeaea] dark:border-[#333333] p-6 bg-white dark:bg-black rounded shadow-light dark:shadow-none`}
|
|
`
|
|
|
|
export default Card |