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 RoleContainer = styled.div`
|
|
border-radius: 4px;
|
|
border: 1px solid ${palette.taupe400};
|
|
padding: 10px;
|
|
`;
|