17 | Disabled Link to Chic-UI Repository 18 |
, 19 | ] 20 | `; 21 | -------------------------------------------------------------------------------- /lib/components/divider/styled.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"styled.js","sourceRoot":"","sources":["../../../src/components/divider/styled.ts"],"names":[],"mappings":";;;;AAAA,OAAO,MAAM,MAAM,mBAAmB,CAAC;AACvC,OAAO,EAAE,KAAK,IAAI,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAG1D,MAAM,CAAC,IAAM,aAAa,GAAG,MAAM,CAAC,EAAE,2MAAc,oBAClC,EAAoB,uBACpB,EAAwC,qBACxC,EAAoC,kEAIrD,KANiB,UAAC,EAAE,IAAK,OAAA,EAAE,CAAC,SAAS,EAAZ,CAAY,EACpB,UAAC,EAAE,IAAK,OAAA,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,CAAC,EAAhC,CAAgC,EACxC,UAAC,EAAE,IAAK,OAAA,UAAU,CAAC,EAAE,CAAC,IAAK,CAAC,CAAC,OAAO,EAA5B,CAA4B,CAIrD,CAAC"} -------------------------------------------------------------------------------- /lib/components/image/image.d.ts: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | export interface ImageProps { 3 | width?: string; 4 | height?: string; 5 | className?: string; 6 | rounded?: boolean; 7 | circle?: boolean; 8 | outline?: boolean; 9 | src: string; 10 | style?: React.CSSProperties; 11 | } 12 | export declare const Image: React.ForwardRefRenderFunction
,
11 |
,
17 |
,
23 |
,
29 |
,
35 | ]
36 | `;
37 |
--------------------------------------------------------------------------------
/src/components/progressBar/__tests__/progressbar.spec.tsx:
--------------------------------------------------------------------------------
1 | import ProgressBar from '..';
2 | import { render } from '../../../test/utils';
3 |
4 | /* eslint-disable */
5 | describe('ProgressBar Component', () => {
6 | it('Renders Correctly', () => {
7 | const ProgressBarGroup = render(
8 | <>
9 |