@jengaui/core
Version:
Jenga UI Core component in React
9 lines (6 loc) • 345 B
TypeScript
import * as react from 'react';
import { AllBaseProps, ContainerStyleProps } from 'tastycss';
interface JengaBlockProps extends Omit<AllBaseProps, keyof ContainerStyleProps | 'as'>, ContainerStyleProps {
}
declare const Block: react.ForwardRefExoticComponent<JengaBlockProps & react.RefAttributes<unknown>>;
export { Block, JengaBlockProps };