A hook used to fit text in one line inside its container.
npm install use-text-fitimport useTextFit from 'use-text-fit';
function Title() {
const {ref} = useTextFit();
return <div ref={ref}>
Lorem Ipsum
</div>;
}- Pass the
refto the text container element. - Profit.