@talend/react-components
Version:
Set of react components.
43 lines • 793 B
JavaScript
import Skeleton from '../../../Skeleton';
import Tile from '../Tile.component';
import TileBody from '../Body/TileBody.component';
import { jsx as _jsx } from "react/jsx-runtime";
export default function SkeletonTile() {
return /*#__PURE__*/_jsx(Tile, {
children: /*#__PURE__*/_jsx(TileBody, {
children: /*#__PURE__*/_jsx(Skeleton, {
width: "100%",
height: "100%"
})
})
});
}
export const SKELETON_TILE_CONF = [{
key: 'skel1',
'data-grid': {
w: 2,
h: 2,
x: 0,
y: 0,
i: 'skel1'
}
}, {
key: 'skel2',
'data-grid': {
w: 2,
h: 2,
x: 2,
y: 0,
i: 'skel2'
}
}, {
key: 'skel3',
'data-grid': {
w: 6,
h: 2,
x: 4,
y: 0,
i: 'skel3'
}
}];
//# sourceMappingURL=SkeletonTile.component.js.map