gestalt
Version:
A set of React UI components which enforce Pinterest's design language
10 lines (9 loc) • 314 B
TypeScript
import { ComponentProps } from 'react';
import Text from '../Text';
type Props = {
graphicSrc: string;
text: string;
textColor: ComponentProps<typeof Text>['color'];
};
export default function ThumbnailButton({ graphicSrc, text, textColor }: Props): import("react/jsx-runtime").JSX.Element;
export {};