You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/components/VerticalGripDots.tsx

9 lines
244 B

import Image from 'next/image';
import verticalGripDots from '../public/vertical-grip-dots.svg';
const VerticalGripDots = (props) => (
<Image src={verticalGripDots} alt="vertical grip dots" {...props} />
);
export default VerticalGripDots;