UNPKG

norma-library

Version:

Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.

8 lines (7 loc) 272 B
import React from 'react'; import { CardBaseProps } from '../interfaces'; import { ColorVariant } from '@/types'; export declare const Card: ({ children, border, color, ...props }: CardBaseProps & { border?: boolean; color?: ColorVariant; }) => React.JSX.Element;