Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@sushiswap/ui / stepper / vertical / StepDescription.tsx
Size: Mime:
import { FC } from 'react'

import { Typography } from '../../typography'
import { StepDetails } from './Stepper'

export interface StepDescriptionInterface extends StepDetails {
  children: string
}

export const StepDescription: FC<StepDescriptionInterface> = ({ children }) => {
  return (
    <Typography variant="sm" className="text-slate-500">
      {children}
    </Typography>
  )
}