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