@cerberus-design/styled-system
Version:
Cerberus Design System Panda-CSS styled-system.
14 lines (10 loc) • 524 B
TypeScript
/* eslint-disable */
import type { FunctionComponent } from 'react'
import type { ScrollableProperties } from '../patterns/scrollable';
import type { HTMLCerberusProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';
export interface ScrollableProps extends ScrollableProperties, DistributiveOmit<HTMLCerberusProps<'div'>, keyof ScrollableProperties | 'overflow'> {}
/**
* A container that allows for scrolling
*/
export declare const Scrollable: FunctionComponent<ScrollableProps>