@useloops/design-system
Version:
The official React based Loops design system
26 lines (23 loc) • 1.11 kB
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { FunctionComponent } from 'react';
import { GraphBarProps } from '../GraphBar/GraphBar.js';
import { LikertGraphProps } from '../LikertGraph/types.js';
import { SliderGraphProps } from '../SliderGraph/types.js';
declare const MiniLikertGraph: FunctionComponent<Pick<LikertGraphProps, 'data'>>;
declare const MiniSliderGraph: FunctionComponent<Pick<SliderGraphProps, 'data'>>;
declare const MiniRankGraph: ({ data }: {
data: GraphBarProps[];
}) => react_jsx_runtime.JSX.Element[];
declare const MiniPunchGraph: ({ data }: {
data: GraphBarProps[];
}) => react_jsx_runtime.JSX.Element[];
declare const MiniEmojiGraph: ({ data }: {
data: GraphBarProps[];
}) => react_jsx_runtime.JSX.Element[];
interface MiniOpenQuestionGraphProps extends GraphBarProps {
sentiment: 'positive' | 'negative';
}
declare const MiniOpenQuestionGraph: ({ data }: {
data: MiniOpenQuestionGraphProps[];
}) => react_jsx_runtime.JSX.Element[];
export { MiniEmojiGraph, MiniLikertGraph, MiniOpenQuestionGraph, MiniPunchGraph, MiniRankGraph, MiniSliderGraph };