mirror of
https://github.com/penxio/penx.git
synced 2026-04-19 03:03:06 -04:00
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
'use client'
|
|
|
|
import React, { forwardRef } from 'react'
|
|
import { ChartSpline } from 'lucide-react'
|
|
import { Button } from '../ui/button'
|
|
|
|
export const CurveButton = forwardRef<HTMLButtonElement, {}>(
|
|
function CurveButton({}, ref) {
|
|
return (
|
|
<Button ref={ref} size="icon" variant="secondary">
|
|
<ChartSpline className="text-neutral-500"></ChartSpline>
|
|
</Button>
|
|
)
|
|
},
|
|
)
|