mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-25 22:26:32 +08:00
* feat(scaleable): add scaleable props to each component * chore(scaleable): update the exported type * feat: apply scaleable to components chore: remove with-default test: improve testcase for scaleable chore: resolve test warning ci: upgrade nodejs to latest lts docs: fix type error in document site * docs: update documents to be compatible with scaleable chore: fix build errors * chore: remove all size-related attributes docs: improve guide document * docs: add scaleable documentation test: update snapshots chore: remove unused * feat: add scaleable to grid components * docs: improve docs * test: update snapshots * fix(grid): fix basic component props
25 lines
759 B
TypeScript
25 lines
759 B
TypeScript
import React from 'react'
|
|
|
|
const ImageBrowserHttpsIcon = () => {
|
|
return (
|
|
<svg viewBox="0 0 24 24" fill="currentColor">
|
|
<path d="M5 10.2H19V21H5V10.2Z" />
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M12 12C13.933 12 15.5 10.3882 15.5 8.4C15.5 6.41177 13.933 4.8 12 4.8C10.067 4.8 8.5 6.41177 8.5 8.4C8.5 10.3882 10.067 12 12 12ZM12 13.8C14.8995 13.8 17.25 11.3823 17.25 8.4C17.25 5.41766 14.8995 3 12 3C9.10051 3 6.75 5.41766 6.75 8.4C6.75 11.3823 9.10051 13.8 12 13.8Z"
|
|
/>
|
|
<style jsx>{`
|
|
svg {
|
|
width: 1em;
|
|
height: 1em;
|
|
}
|
|
`}</style>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
const MemoImageBrowserHttpsIcon = React.memo(ImageBrowserHttpsIcon)
|
|
|
|
export default MemoImageBrowserHttpsIcon
|