@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 328 B
TypeScript
import React from 'react';
export type HPVScreenerProps = {
onClick?: () => void;
className?: string;
style?: React.CSSProperties;
image?: string;
as?: string;
};
declare const HPVScreener: ({ onClick, className, style, image, as, }: HPVScreenerProps) => React.JSX.Element;
export { HPVScreener };