Skip to content

Commit

Permalink
Removes ui-framework/TableInfo component, uses div instead (#22310)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrhodes authored Aug 24, 2018
1 parent ec87f47 commit e701a3f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import React from 'react';
import styled from 'styled-components';
import { KuiTableInfo } from '@kbn/ui-framework/components';
import _ from 'lodash';
import STATIC_PROPS from './staticProperties.json';
import {
Expand Down Expand Up @@ -58,10 +57,12 @@ const Cell = styled.td`
}
`;

const TableInfo = styled(KuiTableInfo)`
const TableInfo = styled.div`
padding: ${px(unit)} 0 0;
text-align: center;
font-size: ${fontSize};
color: ${colors.gray2};
line-height: 1.5;
`;

const EmptyValue = styled.span`
Expand Down

0 comments on commit e701a3f

Please sign in to comment.