forked from
j4ck.xyz/tweets2bsky
A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
1import * as React from 'react';
2import { cn } from '../../lib/utils';
3
4const Label = React.forwardRef<HTMLLabelElement, React.ComponentProps<'label'>>(({ className, ...props }, ref) => (
5 <label ref={ref} className={cn('text-sm font-medium leading-none text-muted-foreground', className)} {...props} />
6));
7Label.displayName = 'Label';
8
9export { Label };