UNPKG

@unpic/solid

Version:

SolidJS component for responsive, high-performance images.

16 lines (14 loc) 316 B
// src/image.tsx import { transformProps } from "@unpic/core"; function Image(props) { return <img {...transformProps(props)} />; } // src/source.tsx import { transformSourceProps } from "@unpic/core"; function Source(props) { return <source {...transformSourceProps(props)} />; } export { Image, Source };