UNPKG

@atlaskit/renderer

Version:
18 lines (17 loc) 441 B
/** * @jsxRuntime classic * @jsx jsx */ import { jsx } from '@emotion/react'; import { Component } from 'react'; interface TruncatedWrapperProps { backgroundColor?: string; children?: React.ReactNode; fadeHeight?: number; height?: number; } export declare class TruncatedWrapper extends Component<TruncatedWrapperProps, unknown> { constructor(props: TruncatedWrapperProps); render(): jsx.JSX.Element; } export {};