mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Bookmark = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M192 224l-64-40-64 40V48a8 8 0 0 1 8-8h112a8 8 0 0 1 8 8Z" />
|
|
</Icon>
|
|
)
|