mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
16 lines
333 B
TypeScript
16 lines
333 B
TypeScript
import React from 'react'
|
|
import { IconButton, IconButtonProps } from './IconButton'
|
|
|
|
export function RoundIconButton(props: IconButtonProps) {
|
|
return (
|
|
<IconButton
|
|
variant="invisible"
|
|
title={props['aria-label']}
|
|
{...props}
|
|
sx={{
|
|
borderRadius: '20px',
|
|
...props.sx,
|
|
}}
|
|
/>
|
|
)
|
|
}
|