mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import { palette } from '@roleypoly/design-system/atoms/colors';
|
|
import styled from 'styled-components';
|
|
|
|
export const CategoryContainer = styled.div`
|
|
background-color: ${palette.taupe100};
|
|
padding: 10px;
|
|
margin: 15px 0;
|
|
`;
|