Files
standardnotes-app-web/app/assets/javascripts/preferences/panes/two-factor-auth/Bullet.tsx
2021-09-29 18:08:43 +02:00

8 lines
233 B
TypeScript

import { FunctionComponent } from 'preact';
export const Bullet: FunctionComponent<{ className?: string }> = ({
className = '',
}) => (
<div className={`min-w-1 min-h-1 rounded-full bg-inverted-default ${className} mr-2`} />
);