useResponsiveProps
Specification
Definition
type UseResponsiveProps<Props> = (props: Props) => Partial<Props>Example
import React from 'react'
import { useResponsiveProps } from 'atomic-layout'
export const Avatar = (props) => {
const { url } = useResponsiveProps(props)
return <img src={url} />
}<Avatar
url="https://backend.dev/avatar/100x100"
urlMd="https://backend.dev/avatar/250x250"
urlLg="https://backend.dev/avatar/500x500" />Last updated