UseElementSize
Last updated: 3.0.0 (04/07/2024)
Usage
import { useElementSize, Flex, Text } from "@valence-ui/core";
function MyComponent() {
const { ref, width, height } = useElementSize();
return (
<Flex ref={ref}>
<Text>
Width: {width}px, Height: {height}px
</Text>
</Flex>
)
}Return type
Attribute
Type
Description
Last updated