forked from cerc-io/snowballtools-base
* ⚡️ feat: create wavy border component * ⚡️ feat: create project card component * ⚡️ feat: add new size in avatar * 🎨 style: add default border radius when the shape is default on the button * ⚡️ feat: create some icons for project card component * 🔧 chore: install and setup jetbrains mono font family * ⚡️ feat: create `getInitials` util function * 🎨 style: add jetbrains mono font to the tailwind config * ⚡️ feat: add warning error icon * ♻️ refactor: change `jetbrains-mono` to `mono`
17 lines
366 B
TypeScript
17 lines
366 B
TypeScript
import React, { ComponentPropsWithoutRef } from 'react';
|
|
import { cn } from 'utils/classnames';
|
|
|
|
export interface WavyBorderProps extends ComponentPropsWithoutRef<'div'> {}
|
|
|
|
export const WavyBorder = ({
|
|
className,
|
|
children,
|
|
...props
|
|
}: WavyBorderProps) => {
|
|
return (
|
|
<div {...props} className={cn('wave', className)}>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|