mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
21 lines
452 B
JavaScript
21 lines
452 B
JavaScript
|
import React from 'react';
|
||
|
import styled from 'styled-components';
|
||
|
|
||
|
const StyledList = styled.ul`
|
||
|
display: table;
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
`;
|
||
|
|
||
|
/**
|
||
|
* @example ./usage.md
|
||
|
*/
|
||
|
export default ({ children, ...rest }) =>
|
||
|
<StyledList {...rest}>
|
||
|
{children}
|
||
|
</StyledList>;
|
||
|
|
||
|
export { default as ProgressbarItem } from './item';
|
||
|
export { default as ProgressbarButton } from './button';
|
||
|
export { default as Indicator } from './indicator';
|