fk-react-ui-components
Version:
Step 1 : Create a file in [ Seeds / Plants / Trees ] <br> Step 2 : It should export an Object with component name and story Component [Refer other components] <br> Step 3 : Story Component should return a react component <br> Step 3 : Created file should
33 lines (25 loc) • 542 B
JavaScript
/**
* Created by manoraj.k on 17/08/17.
*/
import styled from "styled-components";
import { colors } from "../../colorCodes";
export const TabContainer = styled.div`
`;
export const PanelTabsContainer = styled.div`
.show {
display: block;
}
.hide {
display: none;
}
`;
export const PanelContainer = styled.div`
`;
export const VerticalTabsContainer = styled.div`
`;
export const HorizontalTabsContainer = styled.div`
.rc-tab {
display: inline-block;
}
`;
//# sourceMappingURL=PanelTabs.js.map