UNPKG

next-pixelate

Version:

NextJS library to pixelate images or elements

8 lines (7 loc) 250 B
import React from "react"; export declare type ElementPixelatedProps = { pixelSize?: number; }; export declare const ElementPixelated: ({ children, pixelSize }: ElementPixelatedProps & { children: JSX.Element; }) => React.JSX.Element;