12 lines
440 B
JavaScript
12 lines
440 B
JavaScript
'use client';
|
|
import * as React from 'react';
|
|
import { createPreset } from '../createPreset';
|
|
import { caption2StrongClassNames, useCaption2StrongStyles } from './useCaption2StrongStyles.styles';
|
|
/**
|
|
* Text preset component for the Caption2Strong typography variant
|
|
*/ export const Caption2Strong = createPreset({
|
|
useStyles: useCaption2StrongStyles,
|
|
className: caption2StrongClassNames.root,
|
|
displayName: 'Caption2Strong'
|
|
});
|