UNPKG

@discostudioteam/react-code-blocks

Version:

Modified rajinwonderland's modification of Atlaskit's Code Block!

10 lines (9 loc) 249 B
/// <reference types="react" /> export interface IconProps { size: number | string; color: any; [x: string]: any; } export default function ({ size, color, copied, ...props }: IconProps & { copied: boolean; }): JSX.Element;