UNPKG

@atlaskit/page-layout

Version:

A collection of components which let you compose an application's page layout.

12 lines (11 loc) 338 B
import React from 'react'; interface SlotDimensionsProps { variableName: string; value?: number; mobileValue?: number; } /** * Hoists slot dimension styles to the root element. */ declare const SlotDimensions: ({ variableName, value, mobileValue, }: SlotDimensionsProps) => React.JSX.Element; export default SlotDimensions;