@retailmenot/anchor
Version:
A React UI Library by RetailMeNot
11 lines (10 loc) • 381 B
TypeScript
import * as React from 'react';
import { SpaceProps } from '@xstyled/system';
export interface PaneProps extends React.HTMLAttributes<HTMLDivElement>, SpaceProps {
key?: any;
active?: boolean;
title: string;
background?: string;
border?: string;
}
export declare const Pane: ({ className, children, padding, active, ...props }: any) => React.ReactElement<any>;