* menu component implemented and tabs selected ui bug fixed * PR comments resolved * icon import updated * Menu item component (#437) * Adding blank components. * Adding Todo note for tree * Adding todo note for LighteningMenu * ads button component * Adding storybook support. * storybook integrated with button component * ads button component props completed * button component icon and loading logic implemented * button component completed * Added a text knob. * Adding default text for button. * Merging theme and other fixes. * Fixed info button. * Better types. * Adding background param to components. * Re-using vsariant for callount. * Added props for Text input. * Adding text component. * feedback changes added in button and icon component * type any removed in button component * function naming corrected * menu component implemented * menu-item implemented with text, icon and label * menu story updated with menu-items * menu story updated * storyWrapper added in all stories * ads text removed * spinner import updated * relative import added Co-authored-by: Satbir Singh <satbir121@gmail.com> Co-authored-by: satbir121 <39981226+satbir121@users.noreply.github.com> Co-authored-by: Satbir Singh <satbir121@gmail.com> Co-authored-by: satbir121 <39981226+satbir121@users.noreply.github.com>
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import styled from "styled-components";
|
|
|
|
const MenuDivider = styled.div`
|
|
margin: ${props => props.theme.spaces[1]}px
|
|
${props => props.theme.spaces[6]}px;
|
|
border-top: 1px solid #404040;
|
|
`;
|
|
|
|
export default MenuDivider;
|