@primer/react
Version:
An implementation of GitHub's Primer Design System using React
19 lines (16 loc) • 367 B
JavaScript
import React from 'react';
import Text from '../../Text/Text.js';
const InputCaption = ({
children,
disabled,
id,
sx
}) => /*#__PURE__*/React.createElement(Text, {
color: disabled ? 'fg.subtle' : 'fg.muted',
display: "block",
fontSize: 0,
id: id,
sx: sx
}, children);
InputCaption.displayName = "InputCaption";
export { InputCaption as default };