Files
metabuilder/fakemui/icons/Bookmark.tsx

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>
)