import styled, { css } from "styled-components";
import type { WithThemeSchemeProp } from "../types";
import { NamedColors } from "../utils/style";
export const Card = styled.div<WithThemeSchemeProp>`
display: flex;
flex-flow: column nowrap;
width: 100%;
padding: 16px;
${({ themeScheme = "light" }) => css``};
border-radius: 12px;
`;